forked from mandaric/msg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
new.html
36 lines (34 loc) · 1.05 KB
/
new.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
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title>New message</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
</head>
<body>
<div class="container">
<div class="row">
<div class="col-md-12">
<h3>New Message</h3>
<hr>
</div>
</div>
<form action="index.php" method="POST">
<div class="row">
<div class="col-md-6 col-md-offset-3">
<div class="form-group">
<label for="inputTitle">Title:</label>
<input type="text" name="title" class="form-control" id="inputTitle"
placeholder="Title"/>
</div>
<div class="form-group">
<label for="inputContent">Content:</label>
<textarea class="form-control" name="content" rows="3" id="inputContent"></textarea>
</div>
<button type="submit" class="btn btn-default">Submit</button>
</div>
</div>
</form>
</div>
</body>
</html>