-
Notifications
You must be signed in to change notification settings - Fork 0
/
insert.html
43 lines (43 loc) · 1.01 KB
/
insert.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>添加新闻</title>
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css">
<style type="text/css">
html{
font-size: 10px;
}
.container{
width: 50rem;
}
h2,.tr{
text-align: center;
}
</style>
</head>
<body>
<div class="container">
<h2>添加新闻</h2>
<table class="table table-bordered">
<form class="form-group" action="insert.php" method="post">
<tr>
<td>标题:</td>
<td><input type="text" name="title" class="form-control"/></td>
</tr>
<tr>
<td>正文:</td>
<td><textarea rows="4" cols="50" name="article" class="form-control"></textarea></td>
</tr>
<tr>
<td>日期:</td>
<td><input type="text" name="time" class="form-control"/></td>
</tr>
<tr class="tr">
<td colspan="2"><input type="submit" class="btn btn-default btn-lg" value="添加新闻"/></td>
</tr>
</form>
</table>
</div>
</body>
</html>