-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
155 lines (126 loc) · 7.19 KB
/
index.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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
<!DOCTYPE html>
<html>
<head>
<!-- Place all CSS for header in this file -->
<link href='css\header.css' rel='stylesheet' type='text/css'>
<!-- Place all CSS for the rest of the elements in this file -->
<link href='css\index.css' rel='stylesheet' type='text/css'>
<!-- Place all CSS for fonts in this file -->
<link href='css\font.css' rel='stylesheet' type='text/css'>
</head>
<body>
<div id="main-container-div">
<div class="header">
<input class="topButtons" type="button" value="Sign Up">
<input class="topButtons" type="button" value="Sign In">
<a href="C:/Users/Administrator/Desktop/Html code/Project_Stub_File/stub/index.html" id="pageTitle" class="logo-title">ScriBBler</a>
<p class="middleText">Explore, Imagine, Create</p>
<!-- Insert code for Sign Up, Sign In button here. Add code for "ScriBBler" heading and the sub-heading -->
</div>
<div class="postButtons">
<button type="button" class = "centreButtons" value="All Posts"><a href="html/bloglist.html" class="centreBut">All Posts</a></button>
<input type="button" id="createPost" class ="centreButtons1" value="Create Post">
<!-- Insert code for All Posts & Create Post button here -->
</div>
</div>
<div>
<div id="myModal" class="modal">
<div class="modal-content">
<span class="close">×</span>
<div class="modalHeader">
<h3 class="modalTitle">Welcome Back!</h3>
<hr>
</div>
<div class="modal-body">
<form>
<div>
<label>Username</label>
<input class="inputField" type="text" placeholder="Enter Username" required>
</div>
<div>
<label>Password</label>
<input class="inputField" type="password" placeholder="Enter Password" required>
</div>
<button type="submit" class="btnColor">Sign In</button>
<div class="not">Not a member?
<span class="sign">Signup</span>
</div>
</form>
</div>
</div>
<!-- Insert code for Sign In modal here -->
</div>
<div>
<div class="modal">
<div class="modalContent">
<span class="close">×</span>
<div class="modalHeader">
<h3 class="modalTitle">Get Started</h3>
<hr>
</div>
<div class="modalBody">
<form>
<div>
<label>Full Name</label>
<input class="inputField" type="text" placeholder="Enter Full Name" required>
</div>
<div>
<label>Username</label>
<input class="inputField" type="text" placeholder="Enter Username" required>
</div>
<div>
<label>Password</label>
<input class="inputField" type="password" placeholder="Enter password" required>
</div>
<div>
<label>Confirm Password</label>
<input class="inputField" type="password" placeholder="Confirm Password" required>
</div>
<button class="btnColor" type="submit">Sign Up</button>
</form>
</div>
</div>
</div>
<!-- Insert code for Sign Up modal here -->
</div>
<div>
<div class="modal">
<div class="modalcontent">
<span class="close">×</span>
<div class="modalHeader">
<h1 class="modalTitle">Create Post</h1>
<hr>
</div>
<div class="modalbody">
<form>
<div>
<label>Author Name</label>
<input class="inputField1" type="text" placeholder="Enter Author Name" required>
</div>
<div>
<label>Title of Post</label>
<input class="inputField1" type="text" placeholder="Enter title of Post" required>
</div>
<div>
<label>Content of post</label>
<input class="textarea" type="textarea" rows="20" cols="50" placeholder="Enter something..." required>
</div>
<div>
<label>For whom to post?</label><br>
<input type="radio" name="type" value="Friends" required> Friends<br>
<input type="radio" name="type" value="Public" required> Public<br>
<input type="radio" name="type" value="Private" required> Private
</div>
<button class="btnColor" type="submit">Post</button>
<button class="red" type="submit" onclick="remove()">Cancel</button>
</form>
</div>
</div>
<!-- Insert code for Create Post modal here -->
</div>
<!-- Place all Javascript for header in this file -->
<script src="js\header.js"></script>
<!-- Place all Javascript for rest of the elements in this file -->
<script src="js\index.js"></script>
</body>
</html>