forked from Ranganath0108/resume-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSignUp.html
43 lines (35 loc) · 2.07 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SignupPage
</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.1/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-F3w7mX95PdgyTmZZMECAngseQB83DfGTowi0iMjiWaeVhAn4FJkqJByhZMI3AhiU" crossorigin="anonymous">
<link rel="stylesheet" href="css/signup.css">
<script src="./js/signup.js"></script>
</head>
<body>
<div class="container">
<div class="padding container d-flex justify-content-center">
<div class="col-md-10 col-md-offset-1">
<form class="signup-form" method="POST">
<h2 class="text-center">SIGNUP NOW</h2>
<hr>
<div class="form-group"> <input type="text" class="form-control" placeholder="Full Name" id="Name" required="required"> </div>
<div class="form-group"> <input type="email" class="form-control" placeholder="Email Address" id="user-email"required="required"> </div>
<div class="form-group"> <input type="text" class="form-control" placeholder="User Name" id="username"required="required"> </div>
<div class="form-group"> <input type="password" class="form-control " id="password" placeholder="Enter Password" required="required"> <input type="checkbox" onclick="ShowPass()">Show Password </div>
<!-- <div class="form-group"> <input type="password" class="form-control" placeholder="Enter Password" required="required"> </div> -->
<div class="form-group text-center"> <button type="submit" class="btn btn-blue btn-block" onclick="">Let start
</button> </div>
</form>
</div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.1/dist/js/bootstrap.bundle.min.js"
integrity="sha384-/bQdsTh/da6pkI1MST/rWKFNjaCP5gBSY4sEBT38Q/9RBh9AH40zEOg7Hlq2THRZ"
crossorigin="anonymous"></script>
</body>
</html>