-
Notifications
You must be signed in to change notification settings - Fork 0
/
signup.html
97 lines (95 loc) · 2.79 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Readopia - Register</title>
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-4bw+/aepP/YC94hEpVNVgiZdgIC5+VKNBQNGCHeKRQN+PtmoHDEXuppvnDJzQIu9"
crossorigin="anonymous"
/>
<link rel="shortcut icon" href="./readopia.ico" type="image/x-icon" />
<script
src="https://kit.fontawesome.com/38647df40d.js"
crossorigin="anonymous"
></script>
</head>
<body class="bg-primary user-select-none">
<div
class="d-flex justify-content-center align-items-center"
style="height: 100vh"
>
<div class="bg-light shadow rounded p-3 w-50">
<h1 class="text-primary text-center my-5 display-1">Register</h1>
<input
type="text"
name="uname"
id="uname"
placeholder="Username"
class="form-control mb-3"
/>
<div class="row gap-1">
<div class="col-lg col-sm-12">
<input
type="text"
name="fname"
id="fname"
placeholder="First Name"
class="form-control mb-3"
/>
</div>
<div class="col-lg col-sm-12">
<input
type="text"
name="lname"
id="lname"
placeholder="Last Name"
class="form-control mb-3"
/>
</div>
</div>
<input
type="password"
name="pass"
id="pass"
placeholder="Password"
class="form-control mb-3"
/>
<input
type="password"
name="cpass"
id="cpass"
placeholder="Confirm Password"
class="form-control mb-3"
/>
<div id="passmatch" class="mb-3"></div>
<button
type="button"
onclick="register()"
class="btn btn-primary w-100 mb-3"
>
Sign Up
</button>
<p class="text-center">
Already have account?
<a href="./index.html" class="">Sign In</a>
</p>
<hr />
<h4 class="text-center text-muted">
<i class="fa-solid fa-book-open-reader"></i> Readopia
</h4>
<p class="text-center text-muted" style="font-size: 8pt">
Made by Anoof Abdul Kadar
</p>
</div>
</div>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-HwwvtgBNo3bZJJLYd8oVXjrBZt8cqVSpeBNS5n7C8IVInixGAoxmnlMuBnhbgrkm"
crossorigin="anonymous"
></script>
<script src="./logic.js"></script>
</body>
</html>