-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
89 lines (89 loc) · 2.44 KB
/
index.html
File metadata and controls
89 lines (89 loc) · 2.44 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
83
84
85
86
87
88
89
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Registration Form</title>
<link href="./styles/index.css" rel="stylesheet" />
<link
href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"
rel="stylesheet"
integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN"
crossorigin="anonymous"
/>
<link rel="shortcut icon" href="./images/logo.png" type="image/x-icon" />
</head>
<body>
<div class="wrapper">
<h2>Registration Form</h2>
<div class="form-conteniar">
<form>
<div class="input-name">
<i class="fa fa-user lock"></i>
<input type="text" placeholder="First Name" class="name" />
<span class="last">
<i class="fa fa-user lock"></i>
<input type="text" placeholder="Last Name" class="name" />
</span>
</div>
<div class="input-name">
<i class="fa fa-envelope email"></i>
<input
type="email"
placeholder="Email"
required
class="text-name"
/>
</div>
<div class="input-name">
<i class="fa fa-lock lock"></i>
<input
type="password"
placeholder="Password"
class="text-name"
/>
</div>
<div class="input-name">
<i class="fa fa-address-card"></i>
<textarea
name=""
class="text-name"
placeholder="Enter Address"
id=""
cols="30"
rows="4"
></textarea>
</div>
<div class="input-name">
<input
type="radio"
name="radiogroup1"
id="Male"
class="radio-button"
/>
<label for="Male" class="gender">Male</label>
<input
type="radio"
name="radiogroup1"
id="female"
class="radio-button"
/>
<label for="female" class="gender">Female</label>
</div>
<div class="input-name">
<input type="checkbox" id="sleeping" class="check-button" />
<label for="sleeping" class="chack">Sleeping</label>
</div>
<div class="input-name">
<input type="checkbox" id="reading" class="check-button" />
<label for="reading" class="chack">Reading</label>
</div>
<div class="input-name">
<input class="buttonSubmit" type="submit" value="Register" />
<input class="buttonReset" type="reset" value="Clear" />
</div>
</form>
</div>
</div>
</body>
</html>