-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSign_Up.html
More file actions
50 lines (44 loc) · 2.13 KB
/
Sign_Up.html
File metadata and controls
50 lines (44 loc) · 2.13 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="./Sign_Up.css">
</head>
<body>
<div class="container" style="margin-top: 5%;">
<div class="signup-grid">
<div class="signup-text">
<h1>Sign Up</h1>
</div>
<div class="signup-text1" style="text-align: left;">
Already a member? <span><a href="../Login/Login.html" style="color: #2190FF;"> Login</a></span>
</div>
<div class="signup-form">
<form>
<div class="form-group">
<label for="name">Name</label>
<input type="text" name="name" id="name" required class="form-control" placeholder="Enter your name" aria-describedby="helpId" />
<div class="form-group">
<label for="phone">Phone</label>
<input type="tel" name="phone" id="phone" required class="form-control" placeholder="Enter your phone number" aria-describedby="helpId" />
</div>
<div class="form-group">
<label for="email">Email</label>
<input type="email" name="email" id="email" required class="form-control" placeholder="Enter your email" aria-describedby="helpId" />
</div>
<div class="form-group">
<label for="password">Password</label>
<input name="password" id="password" required class="form-control" placeholder="Enter your password" aria-describedby="helpId" />
</div>
<div class="btn-group">
<button type="submit" class="btn btn-primary mb-2 mr-1 waves-effect waves-light">Submit</button>
<button type="reset" class="btn btn-danger mb-2 waves-effect waves-light">Reset</button>
</div>
</form>
</div>
</div>
</div>
</body>
</html>