-
Notifications
You must be signed in to change notification settings - Fork 0
/
guardian-settings-page.html
111 lines (103 loc) · 3.78 KB
/
guardian-settings-page.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
<!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 nav-guardian" id="navbar">
<li><a href="">home</a></li>
<li><a href="">Explore</a></li>
<li class="active"><a href="">Settings</a></li>
</ul>
</div>
</nav>
</div>
</header>
<!-- end header -->
<!-- start section guardian-settings -->
<section class="hr-section-25">
<div class="container">
<div class="guardian-settings">
<div class="basic-guardian-settings">
<form action="" class="basic-info-form">
<div class="row">
<div class="col-lg-6 col-12">
<div class="input-field">
<label for="name">Full name</label><br />
<input type="text" id="name" name="name" placeholder="Enter your name" required
value="mohammed sobhi" />
</div>
<div class="input-field">
<label for="email">Email</label><br />
<input type="email" id="email" name="register-email" placeholder="Enter your email" required
value="m.mohammed.sobhi.98@gmail.com" />
</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" value="01115790092" />
</div>
</div>
</div>
<div class="col-lg-6 col-12">
<div class="input-field">
<label for="password">Password</label><br />
<input type="password" id="password" name="password" placeholder="Enter your password" required
value="zzzzzzzzzzzzzzzzz" />
</div>
<div class="input-field">
<label for="re-password">re-Password</label><br />
<input type="password" id="re-password" name="password" placeholder="Enter your password" required
value="zzzzzzzzzzzzzzzzz" />
</div>
</div>
</div>
<div class="create-new">
<button class="btn btn-purple-400">
Save changes
</button>
</div>
</form>
</div>
</div>
</div>
</section>
<!-- end section guardian-settings -->
<!-- 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 -->
<script src="js/main.js"></script>
</body>
</html>