-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
78 lines (63 loc) · 2.12 KB
/
index.php
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<html>
<head>
<link rel="stylesheet" type="text/css" href="bootstrap.css">
<title>Login Page</title>
<meta content="width=device-width">
<style type="text/css">
.quo-color
{
color: red;
}
@font-face {
font-family: 'Calibri';
src: url('fonts/Calibri.ttf')format('truetype');
font-weight: normal;
font-style: normal;
}
.head-title
{
font-size: 30;
font-family: calibri;
}
body { padding-top: 70px; }
</style>
</head>
<body>
<script lang="text/javascript">
window.onload = function() {
document.getElementById("Inputcodename").focus();
};
</script>
<nav class="navbar navbar-inverse navbar-fixed-top" role="navigation">
<div class="brand"><p class="navbar-text" > Analysis of Errors</small></p></div>
<div class="collapse navbar-collapse navbar-right" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav">
<li><a href="Register.php">New User? Click here!</a></li>
</ul>
</ul>
</div><!-- /.navbar-collapse -->
</nav>
<div class="container">
<center>
<img class="img-responsive" src="itsf.jpg" width="500" height="430">
<h3>Coding is like the closest thing we have to <abbr class="quo-color" title="attribute">Super Power</abbr></h3>
<div class=" col-lg-8 col-lg-offset-2" >
<div class="jumbotron ">
<center>
<form class="form-inline" role="form" action="validate.php" method="post">
<div class="form-group">
<label class="sr-only" for="CodeName">CodeID</label>
<input class="form-control" name=txtusername type=text id=Inputcodename placeholder="CodeID" >
</div>
<div class="form-group">
<label class="sr-only" for="CodeWord">Codeword</label>
<input name=txtpassword class="form-control" type=password id=txtpassword placeholder="Codeword" >
</div>
<button type="submit" class="btn btn-primary">Begin!</button>
</form>
</center>
</div>
</div>
</center>
</body>
</html>