-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy path13-textarea.html
43 lines (36 loc) · 993 Bytes
/
13-textarea.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>
<link type="text/css" rel="stylesheet" href="http://getbootstrap.com/dist/css/bootstrap.css"/>
<title>Pastabin</title>
</head>
<body>
<div class="container">
<div class="page-header">
<h1>
Pastabin
<small>Inspired by Pastebin</small>
</h1>
</div>
<div class="row">
<div class="col-md-8">
<form role="form">
<!-- text area -->
<div class="form-group">
<label for="pasta">New Pasta:</label>
<textarea class="form-control" rows="25" id="pasta"></textarea>
</div>
<!-- input text -->
<div class="form-group">
<label for="title">Title:</label>
<input type="text" class="form-control" id="title" placeholder="Enter title here">
</div>
<!-- submit button -->
<div class="form-group">
<button type="submit" class="btn btn-large">Submit</button>
</div>
</form>
</div>
</div>
</body>
</html>