-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
56 lines (45 loc) · 2.08 KB
/
popup.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
<!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">
<title>subStop - Sign Up</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,700" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.7.1/css/bulma.min.css" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="backgrounds.js"></script>
</head>
<body>
<section class="hero white is-fullheight">
<div class="hero-body">
<div class="container has-text-centered">
<div class="column is-4 is-offset-4">
<img src="resize.png">
<div class="box">
<form>
<div class="field">
<div class="control">
<input class="input is-normal" type="username" id="username" placeholder="Username">
</div>
</div>
<div class="field">
<div class="control">
<input class="input is-normal" type="password" placeholder="Password">
</div>
</div>
</div>
<a class="button is-primariy is-info is-normal is-fullwidth" href="loading.html"">Log In</a>
</form>
</div>
<p>
<p>Forgot username?</p>
</p>
</div>
</div>
</div>
</section>
<script async type="text/javascript" src="../js/bulma.js"></script>
</body>
</html>