-
Notifications
You must be signed in to change notification settings - Fork 0
/
signup.php
52 lines (50 loc) · 1.24 KB
/
signup.php
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Sign up</title>
<style>
.signup{
text-align: center;
}
input{
margin: 20px;
}
.heding{
margin-bottom: 30px;
width: 270px;
height: 50px;
background-color: green;
color: white;
padding-top: 30px;
margin-left: 41%;
}
button{
background-color: green;
color: white;
border-radius: 10px;
width:100px;
height: 50px;
}
#g{
position: absolute;
left: 750px;
margin-top: 10px;
}
</style>
</head>
<body>
<div class="signup">
<div class="heding">Register</div>
<div class="content">
<form action="insert.php" method="post">
<label>Username</label>
<input type="text" name="username" required><br>
<label>Password</label>
<input type="text" name="password" required><br>
<label>Email</label>
<input type="email" name="email" required><br>
<button>Submit</button>
</form></div></div>
<a href="login.php" id="g"><button>Back</button></a>
</body>
</html>