-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresistration_page.html
56 lines (48 loc) · 2.12 KB
/
resistration_page.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="headinglogo.png">
<title>Resister</title>
<link rel="stylesheet" href="resister_page.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css"
integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO"
crossorigin="anonymous">
<script>
function signIn(){
window.open("2ndpage.html");
}
// function home(){
// window.open("amazon.html");
// }
</script>
</head>
<body>
<img src="images/amazon12.png" alt="this is an image">
<hr>
<div class="details">
<form action="connect.php" method="post">
<h3>Create Account</h3><br>
<label for="name"><b>Name:</b></label><br>
<input type="text" name="name" id="name" placeholder="First name and Last Name" required ><br><br>
<label for="email"><b>Email:</b></label><br>
<input type="email" name="email" id="email" placeholder="Enter Email " required><br><br>
<label for="mob"><b>Mobile number:</b></label><br>
<input type="number" name="mob" id="mob" placeholder="Enter mobile number" required><br><br>
<label for="dob"><b>Date of birth :</b></label><br>
<input type="date" name="dob" id="dob" placeholder="Enter your date of birth " required><br><br>
<label for="pasword1"><b>Pasword:</b></label><br>
<input type="password" name="pasword1" id="password1" placeholder="At leat 6 character" required><br><br>
<label for="Re-enter password"><b>Re-enter password</b> </label>
<input type="password" name="Re-enter password" id="Re-enter password" placeholder="Re-enter the same pasword" required><br><br>
<button type="submit" class="btn btn-warning" >Resister</button>
</form><br>
<hr><hr>
<div class="footer">
<p>Already have an account</p>
<a href="#" onclick="signIn()">Login</a>
</div>
</div>
</body>
</html>