-
Notifications
You must be signed in to change notification settings - Fork 1
/
member.html
119 lines (115 loc) · 4.06 KB
/
member.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
<!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
href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="./css/loginReg.css" />
<script src="./js/script.js" defer></script>
<title>Member | E-Bookpolis | Thoriq As</title>
</head>
<body>
<div class="container">
<div class="row">
<div class="mx-auto mt-2 text-center">
<img src="./img/booklogo.png" width="4%" alt="Logo Barber" />
</div>
</div>
<div class="row mt-5">
<div class="col-md-6">
<img
class="img-register img-fluid"
src="./img/img4.svg"
width="450px"
alt="Register Image"
/>
</div>
<div class="col-md-6 mt-3">
<div class="card shadow-sm p-3">
<div class="card-body">
<h4>Sign Up Member</h4>
<p class="text-muted">Register to get more buyers!</p>
<form action="" class="mt-4">
<div class="form-group">
<input
type="text"
class="form-control"
placeholder="Book Store Name"
/>
</div>
<div class="form-group mt-2">
<input
type="text"
class="form-control"
placeholder="Book Store Owner Name"
/>
</div>
<div class="form-group mt-2">
<input type="text" class="form-control" placeholder="Email" />
</div>
<div class="input-group mt-2">
<input
type="password"
class="form-control"
placeholder="Password"
id="password"
/>
<div class="input-group-append">
<span class="input-group-text" onclick="displayPassword()">
<i id="display-pass" data-feather="eye"></i>
<i id="hiden-pass" data-feather="eye-off"></i>
</span>
</div>
</div>
<div class="input-group mt-2">
<input
type="password"
class="form-control"
placeholder="Confirm Password"
id="passwordConfirm"
/>
<div class="input-group-append">
<span
class="input-group-text"
onclick="displayPasswordConfirm()"
>
<i id="display-passConfirm" data-feather="eye"></i>
<i id="hiden-passConfirm" data-feather="eye-off"></i>
</span>
</div>
</div>
<div class="d-grid gap-2">
<button
class="btn btn-primary mt-2 btn-color-theme"
type="button"
>
Submit
</button>
<p class="text-center">
Already have an account?
<a class="text-theme" href="./login.html">Sign In</a>
</p>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
<script src="https://unpkg.com/feather-icons"></script>
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js"
integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM"
crossorigin="anonymous"
></script>
<script>
feather.replace();
</script>
</body>
</html>