-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSignUp.html
More file actions
90 lines (90 loc) · 3.81 KB
/
SignUp.html
File metadata and controls
90 lines (90 loc) · 3.81 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- <script src="http://kit.fontawesome.com/8ab6afd136.js" crossorigin="anonymous"></script> -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/SignUp.css">
<title>Document</title>
</head>
<body>
<div class="row"> </div>
<div class="container col-md-6 bg-warning" id="container">
<form class="was-validated">
<h2 class="text-center text-white">Welcome</h2>
<div class="row">
<div class="col">
<div class="form-group">
<div class="input-group mb-3">
<input type="text" class="form-control" placeholder="First Name" required>
<input type="text" class="form-control" placeholder="Last Name" required>
</div>
</div>
</div>
<div class="col">
<div class="form-group">
<input type="email" class="form-control" placeholder="Email" required>
<small class="form-text text-muted text-center">Email must not be less than 8 characters</small>
</div>
</div>
</div>
<div class="row">
<div class="col">
<div class="form-group">
<input type="tel" class="form-control" placeholder="Phone" required>
</div>
</div>
<div class="col">
<div class="form-group">
<div class="input-group mb-3">
<input type="password" class="form-control" placeholder="password" required>
<div class="input-group-append">
<span class="input-group-icon"><img src="img/eye.jpg" alt="eye"></span>
</div>
</div>
</div>
<small class="form-text text-muted text-center">Password must not be less than 6 characters</small>
</div>
</div>
<div class="row">
<div class="col">
<div class="form-group">
<input type="date" class="form-control" placeholder="dd/mm/yyyy" required>
</div>
</div>
<div class="col">
<div class="form-group text-center">
<label for="" class="gender"> Gender</label>
<div class="custom-control custom-switch">
<input type="radio" class="custom-control-input" id="switch1" name="gender" required>
<label for="switch1" class="custom-control-label"> Male</label>
</div>
<div class="custom-control custom-switch">
<input type="radio" class="custom-control-input" id="switch2" name="gender" required>
<label for="switch2" class="custom-control-label"> Female</label>
</div>
<div class="custom-control custom-switch">
<input type="radio" class="custom-control-input" id="switch3" name="gender" required>
<label for="switch3" class="custom-control-label">Rather not to say</label>
</div>
</div>
</div>
</div>
<div class="button text-center mb-3">
<button class="btn btn-danger btn-md mb-3" type="reset" style="border-radius: 20px ;">Reset</button>
<button class="btn btn-danger btn-md mb-3" type="submit" style="border-radius:20px ;">Sign Up</button>
</div>
</form>
</div>
</div>
<div class="text-center">
<button class="btn btn-outline-danger text-white" id="Login">Log_In Instead</button>
</div>
<div class="col-md-2"></div>
</div>
<script src="js/jquery-3.3.1.js"></script>
hujn
</body>
</html>