-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
114 lines (100 loc) · 5.92 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Login to Simpler.</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.7.5/css/bulma.min.css" />
<link rel="stylesheet" href="styles.css" />
<script src='https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.12.0-2/js/all.min.js'></script>
<script src="script.js" type="module"></script>
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
</head>
<body>
<div id="root">
<section class="hero is-dark is-fullheight">
<header class="navbar">
<div class="container">
<div id="navbarMenuHeroC" class="navbar-menu">
<div class="navbar-end">
<a class="navbar-item is-active" id="homepage" href="index.html">
Home
</a>
<a class="navbar-item" id="aboutpage" href="about.html">
About
</a>
</div>
</div>
</div>
</header>
<div class="hero-body">
<div class="container">
<h1 class="title is-centered has-text-centered is-size-2">Login to Simpler</h1>
<h1 class="subtitle is-centered has-text-centered is-italic">The simple todo/productivity app to get stuff done.</h3>
<div class="columns is-centered">
<div class="column is-4-desktop is-4-widescreen">
<form class="box">
<!--Username-->
<div class="field">
<label class="label is-medium">Username</label>
<div class="control has-icons-left">
<input class="input is-medium" type="text" placeholder="Enter Username..." id="username" required>
<span class="icon is-small is-left">
<i class="fas fa-user has-text-link"></i>
</span>
</div>
</div>
<!--Password-->
<div class="field">
<label class="label is-medium">Passsword</label>
<div class="control has-icons-left">
<input class="input is-medium" type="password" placeholder="Enter Password..." id="password" required>
<span class="icon is-small is-left">
<i class="fas fa-lock has-text-black"></i>
</span>
</div>
</div>
<!--Buttons-->
<div class="field is-centered has-text-centered">
<button class="button is-primary is-medium" type="submit" id="loginButton">
<span class="icon is-small">
<i class="fas fa-sign-in-alt"></i>
</span>
<span>Login</span>
</button>
<a class="button is-info is-medium" href="signup.html">
<span class="icon is-small">
<i class="fas fa-user-plus"></i>
</span>
<span>Sign Up</span>
</a>
</button>
<!--
<a class="button is-info is-medium" href="signup.html">
<span class="icon is-small">
<i class="fas fa-user-plus"></i>
</span>
<span>Sign Up</span>
</a>
-->
</div>
<div class="field is-centered has-text-centered">
<button class="button is-link is-medium" id="delete-button">
<span>This button does nothing, or does it...?</span>
<span class="icon is-small">
<i class="fas fa-user-secret"></i>
</span>
</button>
</div>
</form>
</div>
</div>
<div class="message">
</div>
</div>
</div>
</section>
</div>
</body>
</html>