-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpoststatusform.html
139 lines (123 loc) · 4.18 KB
/
poststatusform.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<!-- Bootstrap CSS -->
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css"
integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh"
crossorigin="anonymous"
/>
<title>Home Page</title>
<link rel="stylesheet" type="text/css" href="style.css" />
</head>
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<a class="navbar-brand" href="#">Luke Wyeth</a>
<button
class="navbar-toggler"
type="button"
data-toggle="collapse"
data-target="#navbarNavAltMarkup"
aria-controls="navbarNavAltMarkup"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNavAltMarkup">
<div class="navbar-nav">
<a class="nav-item nav-link" href="index.html">Home </a>
<a class="nav-item nav-link" href="about.html">About</a>
<a class="nav-item nav-link active" href="poststatusform.html"
>Post a status <span class="sr-only">(current)</span></a
>
<a class="nav-item nav-link" href="searchstatusform.html"
>Search for a status</a
>
</div>
</div>
</nav>
<body>
<div class="wrapper">
<div class="content">
<h1>Post Status</h1>
<form action="poststatusprocess.php" method="post" target="post-status-output">
<label
>Status Code (required):<input type="text" name="code" />
</label>
<label class="status-text-entry"
>Status (required):<input type="text" name="status"
/></label>
<div class="buttonset">
<div class="buttonset__title">Share:</div>
<div class="buttonset__buttons">
<div class="buttonset__buttons__btn">
<input type="radio" id="public" name="privacy" value="public" />
<label for="public">Public</label>
</div>
<div class="buttonset__buttons__btn">
<input
type="radio"
id="friends"
name="privacy"
value="friends"
/>
<label for="friends">Friends</label>
</div>
<div class="buttonset__buttons__btn">
<input
type="radio"
id="private"
name="privacy"
value="private"
/>
<label for="private">Only Me</label>
</div>
</div>
</div>
<label>Date:<input type="date" name="date" /> </label>
<div class="buttonset">
<div class="buttonset__title">Permission Type:</div>
<div class="buttonset__buttons">
<div class="buttonset__buttons__btn">
<input
type="checkbox"
id="like"
name="permission"
value="like"
/>
<label for="like">Allow Like</label>
</div>
<div class="buttonset__buttons__btn">
<input
type="checkbox"
id="comment"
name="permission"
value="comment"
/>
<label for="comment">Allow Comment</label>
</div>
<div class="buttonset__buttons__btn">
<input
type="checkbox"
id="share"
name="permission"
value="share"
/>
<label for="share">Allow Share</label>
</div>
</div>
</div>
<input class="submit-button" type="submit" value="Post" />
</form>
<iframe name="post-status-output" frameborder="0" cellspacing="0"></iframe>
</div>
</div>
</body>
</html>