This repository was archived by the owner on Jan 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathloggedout_share.html
More file actions
62 lines (59 loc) · 2.04 KB
/
loggedout_share.html
File metadata and controls
62 lines (59 loc) · 2.04 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html>
<head>
<title>home.hunt / home</title>
<link href="css/reset.css" rel="stylesheet" type="text/css">
<link href="css/bootstrap.css" rel="stylesheet" type="text/css">
<link href="css/flat-ui.css" rel="stylesheet" type="text/css">
<link href="css/style.css" rel="stylesheet" type="text/css">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
</head>
<body>
<div id="wrapper">
<div id="actionbar">
<!-- TODO: make this logo white, or reverse bar colors -->
<div id="back-button" class="logo"></div>
<!-- TODO: make this logo white, or reverse bar colors -->
<h1>135 Beeler St.</h1>
<div id="account-button" class="button">
<a href="login.html">
<img src="img/account-button.png" alt="account" />
</a>
</div>
</div>
<div id="content">
<div class="form" id="share-form">
<h2>Log in to have group share access!</h1>
<p>This link can be used to share with non-users:</p>
<input type="text" name="home_link" value="http://goo.gl/6y18e">
</div>
<div class="footer">
<div class="section">
<a href="loggedout_house_detail.html">
<img src="img/details.png" alt="house detail" />
</a>
</div>
<div class="section">
<a href="#">
<img src="img/contact.png" alt="contact" />
</a>
</div>
<div class="section">
<a href="#">
<img src="img/favorite.png" alt="favorite" />
</a>
</div>
<div class="section active">
<a href="loggedout_share.html">
<img src="img/share.png" alt="share" />
</a>
</div>
</div>
<script src="js/zepto.min.js"></script>
<script src="js/homehunt.js"></script>
<script type="text/javascript">
$(document).ready(function () {
});
</script>
</body>
</html>