-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
67 lines (59 loc) · 3.51 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Where Ideas Meet, Minds Flourish: Step into The Hall of Ideas!">
<link rel="icon" type="image/x-icon" href="./assets/images/HoI_Favicon.png">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./assets/CSS/style.css">
<link rel="stylesheet" href="./assets/CSS/form.css">
<script src="https://kit.fontawesome.com/dd3f6d2eee.js" crossorigin="anonymous"></script>
<script defer src="./assets/js/logic.js"></script>
<script defer src="./assets/js/form.js"></script>
<title>The Hall of Ideas | Share your toughts</title>
</head>
<body class="flex">
<header class="full-header flex">
<div class="disclaimer">
<p>THIS SITE IS FOR EDUCATIONAL PURPOSES ONLY | FIND THE REPO <span class="repo"><a href="https://github.com/Rod-Freedom/C4-The_Hall_of_Ideas" target="_blank">HERE</a></span>.</p>
</div>
<section class="main-header main-color flex">
<div id="brand" class="brand hidden hide">
<i id="logo" class="fa-regular fa-head-side-brain"></i>
<h1>The Hall of <span>Ideas</span></h1>
</div>
<button id="mode-btn" class="flex"><h2 class="mode-text hidden"></h2><i id="mode-icon" class="fa-light fa-lightbulb"></i></button>
</section>
</header>
<main class="site-main flex">
<div class="error-form hide">
<i class="fa-solid fa-circle-exclamation"></i>
<h3>You forgot some fields!</h3>
</div>
<div class="landing flex">
<section class="banner">
<i id="logo-main" class="fa-regular fa-head-side-brain"></i>
<h1>The Hall of <span>Ideas</span></h1>
</section>
<section class="new-post flex">
<h2 class="quote">Share your thoughts...</h2>
<button id="new-post-btn" class="btn">New post</button>
<button id="goto-btn" class="btn">Go to feed</button>
</section>
</div>
<div class="new-post-form hide">
<button id="return-btn" class="btn">← Return </button>
<div class="input-div input-user-div flex"><h3>Username</h3><input name="user" class="post-input" id="user-input" type="text" maxlength="20"></div>
<div class="input-div input-title-div flex"><h3>Title</h3><input name="title" class="post-input" id="title-input" type="text" maxlength="40"></div>
<div class="input-div input-cont-div flex"><h3>Content</h3><textarea name="content" class="post-input" id="content-input" type="text" maxlength="500" rows="10"></textarea></div>
<button id="post-btn" class="btn">Post now</button>
</div>
</main>
<footer class="main-footer flex">
<p>MADE BY <span><a href="https://github.com/Rod-Freedom" target="_blank">ROD</a></span> WITH CARE AND DEDICATION.</p>
</footer>
</body>
</html>