-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignUp.html
150 lines (146 loc) · 5.53 KB
/
signUp.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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
<!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="shortcut icon" type="image-icon" href="images/title-icon.svg" />
<title>To Be Hero</title>
<link rel="stylesheet" href="css/style.css" />
<script src="https://kit.fontawesome.com/5638fbe671.js"></script>
</head>
<body>
<!-- start header -->
<header>
<div class="container">
<nav>
<div class="logo">
<a href=""> <h1>TO BE</h1><span>HERO</span></a>
</div>
<div class="navbar-ham">
<button class="hamburger" id="hamburger">
<i class="fas fa-bars"></i>
</button>
<ul class="navbar" id="navbar">
<li><a href="">explore</a></li>
<li><a href="" class="bg-purple-400">login</a></li>
<li><a href="" class="hero bg-purple-400">HERO</a></li>
</ul>
</div>
</nav>
</div>
</header>
<!-- end header -->
<div class="container-sign">
<!-- start section-8 -->
<section class="hr-section-8">
<div class="container">
<div class="row">
<div class="col-lg-5 col-md-5 col-12 pr-3 mb-3">
<h1>Join now and Help your
child to achieve dreams</h1>
<img src="images/hero1.png" alt="hero-1" />
</div>
<div class="col-lg-offset-1 col-lg-6 col-md-7 col-12 ">
<ul class="nav-form">
<li>
<div class="overlay-form active">
<a href="">Guardian</a>
</div>
</li>
<li>
<div class="overlay-form">
<a href="">Mentor</a>
</div>
</li>
</ul>
<div class="form-register-container flex-column just-cont">
<div class="register-form">
<div class="form-inputs">
<form action="">
<div class="input-field">
<label for="name">Full name*</label><br />
<input
type="text"
id="name"
name="name"
placeholder="Enter your name"
required
/>
</div>
<div class="input-field">
<label for="email">Email*</label><br />
<input
type="email"
id="email"
name="register-email"
placeholder="Enter your email"
required
/>
</div>
<div class="input-field">
<label for="password">Password*</label><br />
<input
type="password"
id="password"
name="password"
placeholder="Enter your password"
required
/>
</div>
<div class="input-field">
<label for="password">re-Password*</label><br />
<input
type="password"
id="password"
name="password"
placeholder="Re-enter your password"
required
/>
</div>
<div class="input-field">
<label for="phone">Phone</label><br />
<div class="flex-row w-100">
<select name="phone-code" id="phone-code">
<option value="+20">+20</option>
</select>
<input
type="tel"
id="phone"
name="phone"
placeholder="Enter your phone"
/>
</div>
</div>
<div class="form-note just-cont-cntr">
<p class="text-center">*required</p>
</div>
<div class="form-btns sign-up-btns flex-column just-cont-cntr alin-itms-cntr">
<input type="submit" class="btn btn-sign" name="register" value="Register"></input>
<a href="">already registered?</a>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- start section-8 -->
<!-- footer -->
<footer>
<div class="container">
<div class="footer-info">
<h5>ToBeHERO Inc. © Copyright 2021. All Rights Reserved.</h5>
<ul class="icon-foooter">
<li> <a href=""><i class="fab fa-twitter"></i></a> </li>
<li><a href=""><i class="fab fa-github"></i></a></li>
</ul>
</div>
</div>
</footer>
<!-- footer -->
</div>
<script src="js/main.js"></script>
</body>
</html>