-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsignup.html
101 lines (99 loc) · 4.42 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
<!doctype html>
<html lang="en">
<head>
<title>Sign Up</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="icon" type="image/png" href="images/icons/icon.png" />
<link href="https://fonts.googleapis.com/css?family=Lato:300,400,700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="css/pageLoader.css">
<link rel="stylesheet" href="css/style.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.4/jquery.min.js"></script>
</head>
<body class="img" style="background-image: url(images/icons/book.jpg);">
<div class="book-loader">
<div class="d-flex align-items-center">
<div class="book">
<div class="book__pg-shadow"></div>
<div class="book__pg"></div>
<div class="book__pg book__pg--2"></div>
<div class="book__pg book__pg--3"></div>
<div class="book__pg book__pg--4"></div>
<div class="book__pg book__pg--5"></div>
</div>
</div>
</div>
<section class="ftco-section">
<div class="container">
<div class="row justify-content-center">
<div class="col-md-6 text-center mb-5">
<h2 class="heading-section">Sign Up</h2>
</div>
</div>
<div class="row justify-content-center">
<div class="col-md-7 col-lg-5">
<div class="login-wrap">
<h3 class="text-center mb-4"><strong>Create Your Account</strong></h3>
<form action="" class="signup-form">
<div class="form-group mb-3">
<label class="label" for="username">User Name</label>
<input type="text" class="form-control" name="username" id="username" placeholder="Tom007" required>
<span class="icon fa fa-user-o"></span>
</div>
<div class="form-group mb-3">
<label class="label" for="name">Full Name</label>
<input type="text" class="form-control" name="name" id="name" placeholder="Tom Jerry" required>
<span class="icon fa fa-user-o"></span>
</div>
<div class="form-group mb-3">
<label class="label" for="email">Email Address</label>
<input type="text" class="form-control" name="email" id="email" placeholder="[email protected]" required>
<span class="icon fa fa-paper-plane-o"></span>
</div>
<div class="form-group mb-3">
<label class="label" for="age">Age</label>
<input type="number" min="1" max="100" class="form-control" name="age" id="age" placeholder="40" required>
<span class="icon fa fa-user-o"></span>
</div>
<div class="form-group mb-3">
<label class="label" for="gen">Gender</label><br>
<input type="radio" id="gen1" name="gen" style="border:5px; width: 30px" value="1" required>
<label for="gen1">Male</label>
<input type="radio" id="gen2" name="gen" style="border:5px; width: 30px" value="2">
<label for="gen2">Female</label>
<span class="icon fa fa-male-o"></span>
</div>
<div class="form-group mb-3">
<label class="label" for="password">Password</label>
<input id="password" type="password" name="password" class="form-control" placeholder="Password"
required>
<span toggle="#password" class="fa fa-fw fa-eye field-icon toggle-password"></span>
<span class="icon fa fa-lock"></span>
</div>
<div class="form-group mb-3">
<label class="label" for="confirm-password">Confirm Password</label>
<input id="confirm-password" type="password" name="confirm-password" class="form-control" placeholder="Password"
required>
<span toggle="#confirm-password"
class="fa fa-fw fa-eye field-icon toggle-password"></span>
<span class="icon fa fa-lock"></span>
</div>
<div class="form-group">
<button type="submit" class="form-control btn btn-primary submit px-3" id="signupBtn">Sign Up</button>
</div>
</form>
<p>I'm already a member! <a href="login.html">Log In</a></p>
</div>
</div>
</div>
</div>
</section>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM"
crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@11"></script>
<script src="js/pageLoader.js"></script>
<script src="js/main.js" type="module"></script>
</body>
</html>