-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
30 lines (28 loc) · 1.22 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>PetSwap</title>
<link href="resources/js/jquery.mobile.theme-1.0.min.css" rel="stylesheet" type="text/css"/>
<link href="resources/js/jQuery.css" rel="stylesheet" type="text/css"/>
<link href="resources/js/jquery.mobile.structure-1.0.min.css" rel="stylesheet" type="text/css"/>
<script src="resources/js/jquery-1.6.4.min.js" type="text/javascript"></script>
<script src="resources/js/jquery.mobile-1.0.min.js" type="text/javascript"></script>
</head>
<body>
<div data-role="page" id="page">
<div data-role="header">
<h1>PetSwap</h1>
</div>
<div data-role="content">
<div style="text-align:center;"><img src="resources/img/Logo.png" width="300" height="197" alt="logo"></div>
<input type="text" value="username"/>
<input type="text" value="password"/>
<button onClick="location.href='home.html'" data-icon="forward" data-iconpos="right">Login</button>
<button onClick="location.href='home.html'" data-icon="forward" data-iconpos="right">Register</button>
<div style="text-align:center;">- OR -</div>
<div style="text-align:center;"><img src="resources/img/sign.PNG" width="375" height="57" alt="sign"></div>
</div>
</div>
</body>
</html>