-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanagerAccount.html
50 lines (40 loc) · 1.9 KB
/
managerAccount.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles/profile.css">
<link rel="stylesheet" href="styles/managerAccount.css">
<title>Document</title>
</head>
<body>
<div class="main__wrapper">
<h1 class="entering__title"> Enter to Manager Account</h1>
<form action="" class="form">
<label for="username__input" class="label__username">Full Name </label>
<input type="text" class="username__input" id="fullname__manager__input">
<label for="username__input" class="label__username">Email </label>
<input type="text" class="username__input" id="email__manager__input">
<label for="username__input" class="label__username">UseName </label>
<input type="text" class="username__input" id="username__manager__input">
<label for="password__input" class="label__password"> PassWord</label>
<input type="password" class="password__input" id="password__manager__input">
<div class="remeber__login">
<div class="remeber">
<input type="checkbox" class="checkbox__input">
<span class="checkbox__span">Remmeber Password</span>
</div>
<div class="login">
<!-- <a href="" class="login__link">Login</a> -->
<input type="submit" class="login__submit" value="Register" id="okbtn">
</div>
</div>
</form>
<!-- <div class="hint">
<a href="foggetpass.html" class="hit__password">lost ur password?</a>
<a href="index.html" class="hit__oraganicsite">← go back to site</a>
</div> -->
</div>
<script src="scripts/managerAccount.js"></script>
</body>
</html>