forked from swillis/Accomplist
-
Notifications
You must be signed in to change notification settings - Fork 0
/
home.html
executable file
·118 lines (99 loc) · 3.96 KB
/
home.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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<html class="no-js" lang="en" itemscope itemtype="http://schema.org/Product"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<!-- Use the .htaccess and remove these lines to avoid edge case issues.
More info: h5bp.com/b/378 -->
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Accomplist</title>
<meta name="description" content="" />
<meta name="keywords" content="" />
<meta name="author" content="humans.txt">
<link rel="shortcut icon" href="favicon.png" type="image/x-icon" />
<!-- Facebook Metadata /-->
<meta property="fb:page_id" content="" />
<meta property="og:image" content="" />
<meta property="og:description" content=""/>
<meta property="og:title" content=""/>
<!-- Google+ Metadata /-->
<meta itemprop="name" content="">
<meta itemprop="description" content="">
<meta itemprop="image" content="">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1">
<link rel="stylesheet" href="css/gumby.css">
<script src="js/libs/modernizr-2.6.2.min.js"></script>
</head>
<body>
<div class="navbar" id="nav1">
<div class='row'>
<h2 class="six columns logo"><a href="home.html">Accomplist</a></h2>
<ul class="six columns">
<li><a href="#openModal">Log in</a></li>
<li><a href="#openModal2">Sign up</a></li>
</ul>
</div>
</div>
<div id="openModal" class="modalDialog">
<div>
<a href="#close" title="Close" class="close">X</a>
<h2>Log in </h2>
<ul>
<li class="field">
<input class="wide text input" id="text1" type="text" placeholder="Email address" />
</li>
<li class="field">
<input class="wide password input" id="text2" type="password" placeholder="Password" />
</li>
<li>
<div class="medium primary btn"><a href="dashboard.html">Submit</a></div>
</li>
</ul>
</div>
</div>
<div id="openModal2" class="modalDialog">
<div>
<a href="#close" title="Close" class="close">X</a>
<h2>Sign up</h2>
<ul>
<li class="field">
<input class="wide text input" id="text1" type="text" placeholder="First name" />
</li>
<li class="field">
<input class="wide password input" id="text2" type="password" placeholder="Last name" />
</li>
<li class="field">
<input class="wide password input" id="text2" type="password" placeholder="Email address" />
</li>
<li class="field">
<input class="wide password input" id="text2" type="password" placeholder="Password" />
</li>
<li>
<div class="medium primary btn"><a href="dashboard.html">Submit</a></div>
</li>
</ul>
</div>
</div>
<div class='row'>
<h1>Features.</h1>
<p>What a great looking features page!</p>
</div>
<!-- JavaScript at the bottom for fast page loading -->
<!-- Grab Google CDN's jQuery, with a protocol relative URL; fall back to local if offline -->
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="js/libs/jquery-1.8.3.min.js"><\/script>')</script>
<script src="js/libs/gumby.min.js"></script>
<script src="js/plugins.js"></script>
<script src="js/main.js"></script>
<script>
window._gaq = [['_setAccount','UAXXXXXXXX1'],['_trackPageview'],['_trackPageLoadTime']];
Modernizr.load({
load: ('https:' == location.protocol ? '//ssl' : '//www') + '.google-analytics.com/ga.js'
});
</script>
<!-- Prompt IE 6 users to install Chrome Frame. Remove this if you want to support IE 6.
chromium.org/developers/how-tos/chrome-frame-getting-started -->
<!--[if lt IE 7 ]>
<script src="//ajax.googleapis.com/ajax/libs/chrome-frame/1.0.3/CFInstall.min.js"></script>
<script>window.attachEvent('onload',function(){CFInstall.check({mode:'overlay'})})</script>
<![endif]-->
</body>
</html>