-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
95 lines (76 loc) · 3.19 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="Score service app that provides daily email game updates">
<meta name="author" content="https://github.com/oskarv">
<meta name="author" content="https://github.com/illusi0n">
<title>Get Daily Scores</title>
<link rel="icon" href="favicon.ico">
<!-- Bootstrap core CSS -->
<link href="vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link
href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:200,200i,300,300i,400,400i,600,600i,700,700i,900,900i"
rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Merriweather:300,300i,400,400i,700,700i,900,900i"
rel="stylesheet">
<link href="vendor/fontawesome-free/css/all.min.css" rel="stylesheet" type="text/css">
<link href="css/coming-soon.css" rel="stylesheet">
<link href="css/flags.css" rel="stylesheet">
</head>
<body>
<div class="overlay"></div>
<video playsinline="playsinline" autoplay="autoplay" muted="muted">
<source src="mp4/bg-medium.mp4" type="video/mp4">
</video>
<div class="masthead">
<div class="masthead-bg"></div>
<div class="container h-100">
<div class="row h-100">
<div class="col-12 my-auto">
<div class="masthead-content text-white py-5 py-md-0">
<h2 class="mb-3" id="beta-text">Now in public BETA!</h2>
<p class="mb-5" id="main-text">Get <strong>daily email digest</strong> of all basketball games
played that day! With statistics of best performing players and interesting
facts about played games!
</p>
<span id="invalidEmailMessage" style="display: none;">
<h6 id="invalid-email">Invalid email!</h6>
</span>
<div class="input-group input-group-newsletter" id="emailInputComponent">
<input type="email" class="form-control" placeholder="Enter email..." id="emailInput"
aria-label="Enter email..." aria-describedby="basic-addon">
<div class="input-group-append">
<button class="btn btn-secondary" id="subButton" type="button">Subscribe!</button>
</div>
</div>
<span id="postSubscribeMessage" style="display: none;">
<h4 id="thank-you-note">Thank you for subscribing!</h4>
<h5 id="check-inbox-text">Please check your inbox.</h5>
</span>
</div>
</div>>
<footer>
<strong>
© The Live Lock ™ All rights reserved
</strong>
</footer>
<ul class="f32">
<li class="flag us"></li>
<li class="flag rs"></li>
<li class="flag br"></li>
<li class="flag in"></li>
</ul>
</div>
</div>
</div>
</div>
<!-- Bootstrap core JavaScript -->
<script src="vendor/jquery/jquery.min.js"></script>
<script src="vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
<script src="js/sendData.js"></script>
<script src="i18n/i18n.js"></script>
<script src="js/popup.js"></script>
</body>
</html>