-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup_page.html
107 lines (89 loc) · 2.91 KB
/
signup_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
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
102
103
104
105
106
107
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sign Up page</title>
<style>
html {
text-align: center;
}
body {
background-color: #f2f2f2;
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
}
#sp {
display: inline-block;
text-align: left;
width: 300px;
border: 2px solid black;
padding: 20px;
background-color: #fff;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
margin: 0; /* Reset margin to center the box */
}
h3 {
margin-top: 0;
color: #333;
}
input {
width: 100%;
padding: 8px;
margin-bottom: 10px;
box-sizing: border-box;
}
button {
width: 100%;
padding: 10px;
background-color: #4CAF50;
color: white;
border: none;
cursor: pointer;
}
button:hover {
background-color: #45a049;
}
a {
text-decoration: none;
color: #2196F3; /* Blue color or any color of your choice */
}
a:hover {
text-decoration: underline;
}
blockquote {
font-style: italic;
color: #777;
}
</style>
</head>
<body>
<form id="signuppg">
<section id="sp">
<h3>Sign-Up</h3>
<label for="Name"><strong>Name:</strong></label>
<input type="text" id="Name" name="Name" required placeholder="Name"><br>
<label for="Phone"><strong>Phone Number:</strong></label>
<input type="tel" id="Phone" name="Phone" required placeholder="Phone Number" required pattern="^[6-9]{1}[0-9]{9}$""><br>
<label for="Email"><strong>Email:</strong></label>
<input type="email" id="Email" name="Email" required placeholder="Email"><br>
<label for="Loginid"><strong>Login-Id:</strong></label>
<input type="number" id="Loginid" name="Loginid" required placeholder="Loginid" pattern="^[1-9]{1}[0-9]{4}"><br>
<label for="Password"><strong>Password</strong></label>
<input type="password" id="Password" name="Password" required placeholder="Password"><br>
<label for="ConfirmP"><strong>Confirm Password</strong></label>
<input type="password" id="ConfirmP" name="ConfirmP" required placeholder="Confirm Password"><br>
<a href="Main_page.html"><button type="submit">Submit</button></a>
</section>
<blockquote>Already have an account?</blockquote><a href="login_page.html">Login</a>
<br><br>
<a href="Main_page.html">Main Page</a>
</form>
<script src="script_signup.js"></script>
</body>
</html>