-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
34 lines (30 loc) · 1.17 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Budget Manager</title>
<link rel="stylesheet" href="Site.css" type="text/css"/>
<link rel="stylesheet" href="index.css" type="text/css"/>
<script src='http://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script>
<script src="http://www.parsecdn.com/js/parse-1.5.0.min.js"></script>
<script src=ParseInit.js></script>
<script src='index.js'></script>
</head>
<body>
<div class="wrapper">
<div class="container">
<div id="welcomeLogo">
<img id="welcomeImgLogo" src="budgetlogo2915.png">
</div>
<form class="form">
<input type="text" id="username" placeholder="Username"><br />
<input type="password" id="password" placeholder="Password"><br />
</form>
<div id="buttons">
<button id="login">Login into your account</button>
<button id="signUp">Sign Up</button>
</div>
</div>
</div>
</body>
</html>