-
Notifications
You must be signed in to change notification settings - Fork 10
/
signup.html
51 lines (49 loc) · 1.16 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
44
45
46
47
48
49
50
51
<html>
<head>
<title>Login/Signup</title>
<style>
div {
width: 450px;
padding:25px;
border: 5px solid gray;
margin-top: 50;
margin-left: 420;
}
button {
background-color: #4CAF50;
color: white;
border: none;
cursor: pointer;
margin-left: 200;
padding :9px;
}
button1 {
background-color: #4CAF50;
color: white;
border: none;
cursor: pointer;
margin-left: 10;
padding :9px;
}
</style>
</head>
<body>
<font size=8 color= ><center>Signup/Login</center></font>
<div>
<font size=7>Signup</font>
<hr>
<form action="loginsignupphp.php" method="post">
<label>Email_Address : </label>
<input type="Text" placeholder="Enter Email" name="Email" required ><br><br>
<label>Phone_Number : </label>
<input type="Phonenumber" placeholder="Enter Ph.No." name="Phonenumber" required ><br><br>
<label>Password : </label>
<input type="Password" placeholder="Enter Password." name="Password" required >
<br><br>
<input type="submit" value="Submit">
</form>
<hr><br>
Already have an account<button1 type="button" onclick="window.location.href='../login/login.html'">Login</button1>
</div>
</body>
</html>