-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdelta_start.html
More file actions
42 lines (42 loc) · 1.35 KB
/
delta_start.html
File metadata and controls
42 lines (42 loc) · 1.35 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
<html>
<head>
<title>ChatAway!!!</title>
</head>
<body>
<meta charset='utf-8'>
<meta name='viewport' width='device-width,initial-scale=1'>
<meta http-equiv='X-UA-Compatible' content='IE=edge,chrome=1'>
<script type='text/javascript' src='js/bootstrap.min.js'></script>
<link rel='stylesheet' type='text/css' href='css/bootstrap.min.css'>
<link rel='stylesheet' type='text/css' href='css/delta_css.css'>
<div id='div1'>
<h1><strong>ChatAway!!!</strong></h1>
</div>
<div id='div2'>
<form class='form-horizontal' role='form' method='post' action='delta_start.php'>
<div class='row'>
<div class='form-group'>
<div class='col-md-4'>
<input type='text' class='form-control' name='user' placeholder='username'/>
</div>
</div>
<div class='form-group'>
<div class='col-md-4'>
<input type='password' class='form-control' name='pass' placeholder='password'/>
</div>
</div>
</div>
<div class='row'>
<div class='form-group'>
<div class='col-md-2'>
<input type='submit' id='a1' value='Login' class='btn btn-primary btn-block'>
</div>
<div class='col-md-2'>
<input type='button' id='a1' value='Sign up' class='btn btn-primary btn-block' onclick="location.href='delta_signup.html'">
</div>
</div>
</div>
</form>
</div>
</body>
</html>";