-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreg.html
115 lines (115 loc) · 3.77 KB
/
reg.html
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" href="css/reg.css" />
<script
src="https://kit.fontawesome.com/ea3c29a0fe.js"
crossorigin="anonymous"
></script>
<title>Register</title>
</head>
<body>
<header class="header">
<a href="index.html" id="logo-id"><Grand/></a>
<input class="side-menu" type="checkbox" id="side-menu" />
<label class="hamb" for="side-menu"
><span class="hamb-line"></span
></label>
<nav class="nav">
<ul class="nav-links">
<li><a href="index.html">About Me</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="reg.html">Register</a></li>
<li id="box"><a href="login.html">Login</a></li>
</ul>
</nav>
</header>
<main>
<div class="modal">
<div class="form-area">
<h2>Create Account</h2>
<hr />
<form action="#">
<div class="formal">
<input
type="text"
name="fname"
placeholder="First Name"
required
/>
<input
type="text"
name="lname"
placeholder="Last Name"
required
/>
<input
type="tel"
name="phone"
placeholder="Phone Number"
required
/>
<select name="gender">
<option value="" selected disabled>Gender</option>
<option value="m">Male</option>
<option value="f">Female</option>
<option value="p">Private</option>
</select>
<input
type="country"
name="country"
placeholder="Country"
required
/>
</div>
<div class="formal">
<input
type="state"
name="state"
placeholder="State/Province"
required
/>
<input
type="email"
name="email"
class="box"
placeholder="Email"
required
/>
<input
type="password"
name="password"
class="box"
placeholder="Password"
required
/>
<input
type="password"
name="password"
class="box"
placeholder="Confirm Password"
required
/>
<button type="submit">Register</button>
</div>
</form>
</div>
</div>
</main>
<footer>
<div class="company">
<p>All Rights Reserved © Grand 2022</p>
</div>
<div class="socials">
<a class="icons" href="https://twitter.com/AvusKing" target="_blank" rel="noopener noreferrer"><i class="fa-brands fa-twitter-square"></i></a>
<i class="fa-brands fa-whatsapp-square"></i>
<a class="icons" href="https://dribbble.com/3_Trees" target="_blank" rel="noopener noreferrer"><i class="fa-brands fa-dribbble-square"></i></a>
<a class="icons" href="https://github.com/Avu0s" target="_blank" rel="noopener noreferrer"><i class="fa-brands fa-github-square"></i></a>
</div>
</footer>
</body>
</html>