-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
67 lines (58 loc) · 2.7 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
<!DOCTYPE html>
<html lang="en" ng-app="echad-zeman">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Echad Zeman</title>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.0-rc.3/angular.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.0-rc.3/angular-route.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/validator/3.12.0/validator.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/pouchdb/3.1.0/pouchdb.min.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
<link rel="stylesheet" href="resources/css/site.css">
<script src="resources/js/lib/scrypt.js"></script>
<script src="resources/js/site.js"></script>
<script src="resources/js/user/userService.js"></script>
<script src="resources/js/user/userDao.js"></script>
<script src="resources/js/validator.js"></script>
<script src="resources/js/pouchdb.js"></script>
<script src="resources/js/scrypt.js"></script>
<body ng-controller="body" ng-view/>
</head>
<body>
<header>
<img id="siteLogo" src="logo_one.png"/>
<div>
<div id="loggedIn">
<span id="loggedInUser"></span>
<button id="logout">Logout
</button>
</div>
<div id="loggedOut">
<input type="text" id="inputUserName">
<a href="page1.html">
<button id="login">Login</button>
</a>
</div>
</div>
</header>
<script type='text/javascript'>
//confirm("Day 3. Still lost. Somehow managing to fake progress.")
//confirm("It's not Day 3 anymore. You can ignore that last one.")
</script>
<p>
<em>Welcome.</em> <br>
Click Login to view page 1. <br>
(Currently the input field doesn't connect to anything.)
</p>
<!--<p>Hey- what does that angular/ajax stuff in the head do?</p>-->
<!--<p>I seem to be making a mess of this HTML. I need to think of something to actually add, rather than just editing text for the sake of making changes.</p>-->
<!--<p><b>VVV</b> That's Old News down there. Ignore it.<b>VVV</b></p>
<p><i>Day two. Still lost in the wilderness. Now I have multiple maps, but the legend to each seems to be in a strange language I don't understand. Hopefully I can decode it before I'm forced to eat my own leg.</i></p>
-->
<!--<p>I have no idea what's going on</p>
<p>And now I can figure out how I got here. I'm seeing files(I think?) I couldn't see before, and can't find the file/link that brought me here in the first place.</p>
<p>Remind me to delete that ^ next time I make an edit.</p>
-->
</body>
</html>