-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFMORM .HTML
More file actions
82 lines (71 loc) · 2.5 KB
/
FMORM .HTML
File metadata and controls
82 lines (71 loc) · 2.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
body{
margin: 0;
background-image: url(/html/images/Abstract\ blue\ technology\ concept\ vector\ image\ on\ VectorStock.jpeg);
background-size: cover;
align-items: center;
}
.form-div{
border: 3px solid black;
background: transparent;
backdrop-filter:blur(20px);
width: 420px;
margin: 320px;
padding: 30px 40px;
border-radius: 20px;
}
label, input, button {
margin-top: 10px;
margin-left: 5px;
}
label{
font-size: large;
font-family: Georgia, 'Times New Roman', Times, serif;
}
button{
font-family: Arial, Helvetica, sans-serif;
font-size: large;
border-radius:10px black ;
margin-left: 40px;
margin-right: 40px;
}
button:hover{
color: black;
background-color: rgb(57, 199, 76);
border-radius: 5px;
}
input{
border-radius: 3px black;
border: 2px solid black;
}
</style>
</head>
<body>
<!-- main div for form -->
<div class="form-div">
<!-- form tag -->
<form action="">
<h1>Login Form</h1>
<label for="Username">Username :</label>
<input type="text" id="Uname" placeholder="Username" required> <br>
<label for="password">password :</label>
<input type="password" id="Psw" placeholder="password" required><br>
<!-- Drop Down list -->
<label for="Gender">Gender :</label>
<select id="gender">
<option value="Male">Male</option>
<option value="Female">Female</option>
<option value="Others">Others</option>
</select>
<!-- Remenber checkbox -->
<label class="checkbox"><input id="remember" type="checkbox">remember me</label><br>
<button type="button" id="btn" value="button">Login</button>
</form>
</div>
</body>
</html>