-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathreg.php
47 lines (43 loc) · 1.65 KB
/
reg.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="css/materialize.min.css">
<link rel="stylesheet" href="css/icon.css">
<title>留言板</title>
</head>
<body>
<div class="container">
<h3>注册</h3>
<form action="reg_do.php" method="post">
<div class="row">
<div class="input-field col s12">
<i class="material-icons prefix">account_circle</i>
<input type="text" name="name" id="name" class="validate" required>
<label for="name">用户名:</label>
</div>
</div>
<div class="row">
<div class="input-field col s12">
<i class="material-icons prefix">lock</i>
<input type="password" name="passwd1" id="passwd1" class="validate" required>
<label for="passwd1">密码:</label>
</div>
</div>
<div class="row">
<div class="input-field col s12">
<i class="material-icons prefix">lock_outline</i>
<input type="password" name="passwd2" id="passwd2" class="validate" required>
<label for="passwd2">确认密码:</label>
</div>
</div>
<div class="row">
<input type="submit" class="btn" value="注册">
</div>
</form>
</div>
<script src="js/materialize.min.js"></script>
</body>
</html>