-
Notifications
You must be signed in to change notification settings - Fork 0
/
forgot-password.html
55 lines (47 loc) · 1.81 KB
/
forgot-password.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<link rel="shortcut icon" href="assets/ico/favicon.ico">
<title>Billistic.com | Online Bill Management | Log In</title>
<!-- we need jQuery in the body so load here -->
<script src="https://code.jquery.com/jquery-1.10.2.min.js"></script>
<!-- Google Fonts, Lato, Light, Normal and Bold. -->
<link href='http://fonts.googleapis.com/css?family=Lato:300,400,700' rel='stylesheet' type='text/css'>
<!-- FontAwesome css -->
<link href="http://netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css" rel="stylesheet">
<!-- Bootstrap core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]
-->
<link href="css/style.css" rel="stylesheet">
</head>
<body>
<div id="page">
<div class="content">
<div class="inner-container">
<a href="/billistic">
<img src="img/header_logo_bw.png" class="inner_logo" alt="Billistic"/>
</a>
<div></div>
<div class="header-with-line">
<span>PASSWORD</span>
</div>
<div></div>
<form action="" method="post" name="forgotPassword">
<input type="text" placeholder="Email" name="username" required="required" />
<input type="submit" value="Submit" style="background-color:#18a8c2;color:#fff;border:3px solid #18a8c2">
</form>
</div>
</div>
</div>
</body>
</html>