-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
84 lines (80 loc) · 3.48 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="./styles/styles.css">
<link rel="stylesheet" href="./styles/widget_styles.css">
<link rel="stylesheet" href="./styles/taskWidget_styles.css">
<link rel="stylesheet" href="./styles/chatWidget_styles.css">
<link rel="stylesheet" href="./styles/friendsWidget_styles.css">
<link rel="stylesheet" href="./styles/newsWidget_styles.css">
<link rel="stylesheet" href="./styles/addFriendModal_styles.css">
<link rel="stylesheet" href="./styles/eventWidgetStyles.css">
<link rel="stylesheet" href="./styles/toaster.css">
</head>
<body>
<nav class="navbar nutshellNavbar"></nav>
<header></header>
<main class="main-content">
<section class="welcome">
<div class="welcome__container">
<div class="welcome__background">
<div class="welcome__interaction">
<div class="welcome__message">
Welcome to
<div class="welcome__brand">Nutshell</div>
</div>
<div class="welcome__link-container">
<div class="welcome__link" href="#">Enter</div>
</div>
</div>
</div>
</div>
</section>
<section class="login" id="login">
<div class="login__page-wrapper">
<div class="login__container">
<!-- <form name="login" class="login__form"> -->
<div class="login__username-container">
<div class="login__username-label">username:</div>
<input class="login__username" type="text" autofocus>
</div>
<div class="login__username-email">
<div class="login__email-label">email:</div>
<input class="login__email" type="text">
</div>
<div class="login__button-container">
<button class="login__button-login">Login</button>
<button class="login__button-create">Create Account</button>
</div>
<div class="login__user-message"></div>
<!-- </form> -->
</div>
</div>
</section>
<section class="dashboard" id="dashboard">
<section class="widget__container">
<section class="tasksWidget widget">taskWidget</section>
<section class="chatWidget widget">chatWidget</section>
<section class="eventsWidget widget">eventsWidget</section>
<section class="newsWidget widget">newsWidget</section>
<section class="friendsWidget widget">friendsWidget</section>
</section>
</section>
<!-- The Modal -->
<section class="modal addFriendPrompt" id="addFriendPrompt">
<!-- Modal content -->
<section class="modal-content">
<span id="closeFriendModal">×</span>
<section class="addFriendPrompt__content">
</section>
</section>
</section>
</div>
<section class="toaster__container"></section>
</main>
<footer></footer>
<script src="./build/bundle.js"></script>
</body>
</html>