-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
151 lines (143 loc) · 4.15 KB
/
index.html
File metadata and controls
151 lines (143 loc) · 4.15 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Homepage</title>
<!-- TODO: Include Font Awesome file here -->
<!-- TODO: Include Google Fonts file here -->
<script src="https://kit.fontawesome.com/d9b010d1ce.js" crossorigin="anonymous"></script>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Montez&display=swap" rel="stylesheet">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Ubuntu+Mono&display=swap" rel="stylesheet">
<link href="stylesheets/common.css" rel="stylesheet">
</head>
<body>
<header class="main-nav">
<div class="logo">
<a href="/" class="nav-home">
<h1>
ScriBBler
</h1>
</a>
<p class="sub-heading">
Explore, Imagine, Create
</p>
</div>
<div class="controls">
<button class="btn btn-md btn-blue signin">
SignUp
</button>
<button class="btn btn-md btn-blue signup">
SignIn
</button>
</div>
</header>
<div class="container">
<button class="all-posts btn btn-md btn-orange" style="margin-right:.2rem;">All Posts</button>
<button class="create-posts btn btn-md btn-orange">Create Posts</button>
</div>
<div class="modal-container hide signup-modal" id="signup-modal">
<div class="modal">
<div class="modal-header">
<h3>
Get Started
</h3>
<span class="modal-close">
<i class="fas fa-times"></i>
</span>
</div>
<hr class="modal-separator">
<div class="modal-body">
<form>
<div class="form-control">
<label>Name</label>
<input type="text" placeholder="Enter your Name" required/>
</div>
<div class="form-control">
<label>Username</label>
<input type="text" placeholder="Enter your Username" required/>
</div>
<div class="form-control">
<label>Password</label>
<input type="password" placeholder="Enter your Password" required/>
</div>
<div class="form-control">
<label>Confirm Password</label>
<input type="password" placeholder="Re-Enter your Password" required/>
</div>
<button class="btn btn-sm btn-green btn-fluid">
SignUp
</button>
</form>
</div>
</div>
</div>
<div class="modal-container hide signin-modal" id="signin-modal">
<div class="modal">
<div class="modal-header">
<h3>
Welcome back!
</h3>
<span class="modal-close">
<i class="fas fa-times"></i>
</span>
</div>
<hr class="modal-separator">
<div class="modal-body">
<form>
<div class="form-control">
<label>Username</label>
<input type="text" placeholder="Enter your Username" required/>
</div>
<div class="form-control">
<label>Password</label>
<input type="password" placeholder="Enter your Password" required/>
</div>
<button class="btn btn-sm btn-green btn-fluid">
SignIn
</button>
<p class="not-member">
Not a member?
<a href="#" class="signup-link">SignUp</a>
</p>
</form>
</div>
</div>
</div>
<div class="modal-container hide create-post-modal" id="create-post-modal">
<div class="modal">
<div class="modal-header">
<h3>
Pen your Post
</h3>
<span class="modal-close">
<i class="fas fa-times"></i>
</span>
</div>
<hr class="modal-separator">
<div class="modal-body">
<form>
<div class="form-control">
<label>Title</label>
<input type="text" placeholder="Enter title of your post" required/>
</div>
<div class="form-control">
<label>Content</label>
<textarea placeholder="Enter the contents of your post" class="content-area" rows="20" style="font-size: 1rem;" required></textarea>
</div>
<div style="display: flex;justify-content: center;">
<button class="create-post btn btn-sm btn-green">
create
</button>
</div>
</form>
</div>
</div>
</div>
<script src="/scripts/commonFunctions.js" type="module"></script>
<script src="/scripts/common.js" type="module"></script>
</body>
</html>