-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
40 lines (29 loc) · 1.42 KB
/
index.php
File metadata and controls
40 lines (29 loc) · 1.42 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
<? require_once "__index__.php"; ?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.ddiv">
<html>
<head>
<meta http-equiv="X-UA-Compatible" content="IE=9"> </meta>
<link rel="icon" href="favicon.ico" type="image/x-icon">
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<link rel="stylesheet" type="text/css" href="styles/index.css">
<link rel="stylesheet" type="text/css" href="styles/main.css">
<script type="text/javascript" src="scripts/main.js"></script>
<script type="text/javascript" src="scripts/index.js"></script>
</head>
<body class="textShadow" onload="indexPageLoads();">
<!-- TITLE -->
<div class="pageTitle">Mutation Analysis Tool<hr id="divider" class=""></div>
<!-- FORM -->
<form name="inputLogin" action="login/login.php" method="POST" id="loginForm">
<span class="formLabel">Username</span>
<input class="inputBoxStyle" id="username" type="text" name="username" onkeydown="clearIndexPageInputs()"/>
<br/><br/>
<span class="formLabel">Password</span>
<input class="inputBoxStyle" id="password" type="password" name="password" onkeydown="clearIndexPageInputs()"/>
<br/><br/>
<input class="submitButton" id="indexSubmitButton" type="submit" value="Start" />
</br>
<a href="register/register.php" id="notRegistered" class="smallLink">Not Registered?</a>
</form>
</body>
</html>