-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
84 lines (73 loc) · 3.77 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>
<head>
<title>noSNOOZ</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="https://cdnjs.cloudflare.com/ajax/libs/socket.io/2.0.4/socket.io.js"te></script>
<script type="text/javascript" src="./reactToForm.js"></script>
</head>
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Verdana">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<style>
body {font-family: "Verdana", sans-serif}
body {background-color: #8F8F8F;}
.mySlides {display: none}
</style>
<body>
<!-- Navbar -->
<div class="w3-top">
<div class="w3-bar w3-black w3-card">
<a class="w3-bar-item w3-button w3-padding-large w3-hide-medium w3-hide-large w3-right" href="javascript:void(0)" onclick="toggle_menu()" title="Toggle Navigation Menu"><i class="fa fa-bars"></i></a>
<a href="#" class="w3-bar-item w3-button w3-padding-large w3-hide-small">ABOUT</a>
<a href="#band" class="w3-bar-item w3-button w3-padding-large w3-hide-small">OUR ALGORITHM</a>
<a href="#band" class="w3-bar-item w3-button w3-padding-large w3-hide-small">RECENT POSTS</a>
<a href="https://github.com/CBSkarmory/noSNOOZ" class="w3-bar-item w3-button w3-padding-large w3-hide-small">SOURCE</a>
<!-- <div class="w3-dropdown-hover w3-padding-large w3-hide-small">MORE</a> -->
<!-- <div class="w3-dropdown-content w3-bar-block w3-card-4"> -->
<!-- <a href="#" class="w3-bar-item w3-button">REDDIT</a> -->
<!-- <a href="#" class="w3-bar-item w3-button">GITHUB</a> -->
<!-- <a href="#" class="w3-bar-item w3-button">CONTACT</a> -->
<!-- </div> -->
<!-- </div> -->
</div>
</div>
<!-- Navbar on small screens -->
<div id="navDemo" class="w3-bar-block #5F99CF w3-hide w3-hide-large w3-hide-medium w3-top" style="margin-top:46px">
<a href="#band" class="w3-bar-item w3-button">ABOUT</a>
<a href="#tour" class="w3-bar-item w3-button">OUR ALGORITHM</a>
<a href="#contact" class="w3-bar-item w3-button">RECENT POSTS</a>
<a href="https://github.com/CBSkarmory/noSNOOZ" class="w3-bar-item w3-button">SOURCE</a>
<!-- <a href="#" class="w3-bar-item w3-button">REDDIT</a> -->
<!-- <a href="#" class="w3-bar-item w3-button">GITHUB</a> -->
<!-- <a href="#" class="w3-bar-item w3-button">CONTACT</a> -->
</div>
<!-- Page content -->
<div class="w3-content" style="max-width:800px;margin-top:46px">
<!-- Heading -->
<div class="w3-container w3-content w3-center w3-padding-64" style="max-width:500px" id="band">
<h1 class="w3-wide">noSNOOZ</h1>
<p class="w3-opacity"><i>Real-time updates for Reddit</i></p>
</div>
<!-- Sign up -->
<div class="w3-container w3-content" style="max-width:500px" id="contact">
<h2 class="w3-wide w3-center">SIGN UP</h2>
<p class="w3-opacity w3-center"><i>Enter your phone number and select your carrier and to receive real-time updates on trending reddit posts.</i></p>
<center><input id="submit_box" class="w3-input w3-border" style="max-width:130px" type="tel" placeholder="555-555-5555" required name="Phone Number" width="15"></center>
<br/>
<center><select id="carrier_menu" name="carrier">
<option value="SPRINT">Sprint</option>
<option value="ANT">ATT</option>
<option value="TMOBILE">T-mobile</option>
<option value="VERIZON">Verizon</option>
</select></center>
<br/>
<center><button id="submit_but" class="w3-button w3-deep-orange w3-section w3-center" type="submit" onclick="onSubmit()">SUBMIT</button></center>
<div>
</div>
</div>
<!-- End Page Content -->
</div>
</body>
</html>