-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaddMessage.html
27 lines (27 loc) · 969 Bytes
/
addMessage.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>留言</title>
</head>
<body>
<h2 style="text-align: center">留言</h2>
<form action="add.php" method="post" style="width: 500px;margin: auto;text-align: center">
<table border="1">
<tr>
<td><label for="name">留言者</label></td>
<td>
<input type="text" name="name" id="name" style="width: 370px"/>
</td>
</tr>
<tr>
<td><label for="message">留言內容</label></td>
<td>
<textarea id="message" name="message" cols="50" rows="20" style="resize: none"></textarea>
</td>
</tr>
</table>
<input type="submit" value="留言" style="font-size: 20px"/>
</form>
</body>
</html>