-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (37 loc) · 1009 Bytes
/
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
32
33
34
35
36
37
38
39
40
41
42
<!DOCTYPE html>
<html lang='en'>
<head>
<meta charset="UTF-8" />
<title>.::ExileSoft Mobile::.</title>
<meta name="exileMobile" content="yes" />
<meta name="viewport" content="width=device-width, minimum-scale=1.0, maximum-scale=1.0" />
<link rel="stylesheet" type="text/css" href="css/style.css" />
<script language="javascript" type="text/javascript">
function login_onclick()
{
window.location = "landing.html";
}
</script>
</head>
<body>
<div class="centered">
<form>
<img border="0" src="img/exileLogo.jpg" alt="ExileSoft Mobile" >
<div class="inset">
<p>
<label for="email">User Name</label>
<input type="text" name="email" id="email">
</p>
<p>
<label for="password">Password</label>
<input type="password" name="password" id="password">
</p>
</div>
<p class="p-container">
<span>Forgot password ?</span>
<input type="button" name="go" id="go" value="Log in" onclick="return login_onclick()" />
</p>
</form>
</div>
</body>
</html>