-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·44 lines (43 loc) · 1.56 KB
/
index.html
File metadata and controls
executable file
·44 lines (43 loc) · 1.56 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>SlamApp</title>
<link rel="stylesheet" href="css/jquery.mobile-1.3.1.min.css" type="text/css">
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript" src="js/app.js"></script>
<script type="text/javascript" src="js/jquery.mobile-1.3.1.min.js"></script>
<script type="text/javascript" src="cordova.js"></script>
<link rel="stylesheet" href="css/app.css" type="text/css">
</head>
<body>
<div data-role="page" id="login">
<div data-role="content">
<br><br><div data-role="collapsible" data-theme="b" data-content-theme="d" data-collapsed="false">
<h4>Slam App Login</h4>
<div data-role="fieldcontain">
<label for="textinput-fc">Username:</label>
<input type="text" name="textinput-fc" id="textinput-fc" placeholder="Email Address" value="">
</div>
<div data-role="fieldcontain">
<label for="textinput-fc">Password:</label>
<input type="text" name="textinput-fc" id="textinput-fc" placeholder="Password" value="">
</div>
<a href="#home" data-role="button" id="login-buton" data-transition="none">Click to Login</a>
</div>
</div>
</div>
<div data-role="page" id="home" data-add-back-btn="true">
<div data-role="header">
<h1>Header Text</h1>
</div>
<div data-role="content">
<h3>Let's Slam</h3>
</div>
<div data-role="footer" data-position="fixed">
<h1>© Footer Text</h1>
</div>
</div>
</body>
</html>