forked from eliks/habari
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
178 lines (148 loc) · 3.46 KB
/
Copy pathindex.html
File metadata and controls
178 lines (148 loc) · 3.46 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
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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
<!DOCTYPE html>
<html>
<head>
<title>Home Page</title>
<link rel="stylesheet" type="text/css" href="css/reset.css">
<link rel="stylesheet" type="text/css" href="css/habari.css">
<link rel="stylesheet" href="themes/base/jquery.ui.all.css">
<script src="js/jquery-1.8.3.js"></script>
<script src="ui/jquery.ui.core.js"></script>
<script src="ui/jquery.ui.widget.js"></script>
<script src="ui/jquery.ui.position.js"></script>
<script src="ui/jquery.ui.dialog.js"></script>
<script src="ui/jquery.ui.effect.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$("#sform").dialog({
autoOpen : false,
height : 370,
width : 300,
modal : true,
});
$("#sign_up").click(function() {
$("#sform").dialog("open")
})
})
//login form
$(document).ready(function() {
$("#lform").dialog({
autoOpen : false,
height : 370,
width : 300,
modal : true,
});
$("#log_in").click(function() {
$("#lform").dialog("open")
})
})
</script>
</head>
<body>
<header id="nav">
<ul id="nav-list">
<div id="lmenu">
<a href="#">
<li>
Home
</li></a>
<a href="news.php">
<li>
Today's News
</li></a>
<a href="#">
<li>
About
</li></a>
</div>
<div id="rmenu">
<a id="log_in" href="#">
<li style="border-right: 1px solid white;">
<strong>Login</strong>
</li></a>
<a id="sign_up" href="#">
<li>
<strong>Sign Up</strong>
</li></a>
</div>
</ul>
</header>
<div id="container">
<div id="left">
<img style="margin-left: 30px;" src="img/Hab.png" />
<p>
Fries is an awesome mobile development framework for Android apps using just HTML, CSS, and
Javascript and was inspired by Ratchet. We all know that you can find loads of iOS development tools out
there, so this give some love to Android. Surprisingly, Fries works well with PhoneGap.
</p>
<div style="margin: auto; width: 270px;">
<img class="icons" src="img/apple.png"/>
<img class="icons" src="img/android.png"/>
<img class="icons" src="img/blackberry.png"/>
<img class="icons" src="img/windows.png"/>
</div>
</div>
<div id="right">
<img style="width: 100%; margin-left: 100px;" src="img/mobile3.png" />
</div>
</div>
<div style="clear: both;">
</div>
<div id="sform">
<div>
<table style="margin: auto;">
<tr>
<td>
<input type="text" id="user" placeholder="Username">
</td>
</tr>
<tr>
<td>
<input type="text" id="mail" placeholder="Email">
</td>
</tr>
<tr>
<td>
<input type="text" id="pwd" placeholder="Password">
</td>
</tr>
<tr>
<td>
<button id="sign">
Sign Up!
</button></td>
</tr>
</table>
</div>
</div>
<div id="lform">
<div>
<table style="margin: auto;">
<tr>
<td>
<input type="text" id="name" placeholder="Username">
</td>
</tr>
<tr>
<td>
<input type="text" id="pass" placeholder="Password">
</td>
</tr>
<tr>
<td>
<input type="text" id="v_pass" placeholder="Verify Password">
</td>
</tr>
<tr>
<td>
<button id="log">
Login
</button></td>
</tr>
</table>
</div>
</div>
<footer>
Copyright Habari 2013
</footer>
</body>
</html>