-
Notifications
You must be signed in to change notification settings - Fork 0
/
register.php
34 lines (27 loc) · 936 Bytes
/
register.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
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>Register</title>
<link rel="icon" href="favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="style/style.css">
</head>
<body>
<div id="pageMiddle">
<div id="pmleft"></div>
<div id="pmcenter">
<br>
<div style="font-size:50px;font-family:'Palatino Linotype', 'Book Antiqua', Palatino, serif">Register</div>
<form action="adduser.php" method="post" enctype="multipart/form-data">
User name:<input type="text" name="username"><br><br>
Password:<input type="password" name="password"><br><br>
Name:<input type="text" name="fname"><br><br>
Email:<input type="text" name="emaill"><br><br>
<br>
<input type="submit" name="submit" value="Submit"><br><br>
</form>
</div>
</div>
<br>
</body>
</html>