easyctf-2017/web/login.html
Charles Truluck 64bd65b3ad Updated "about" and "login" pages
Sanitized the “about” and “login” page.
2015-12-23 20:44:40 -05:00

35 lines
1 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<title>Login</title>
<script src="js/semantic.min.js"></script>
<link type="text/css" rel="stylesheet" href="css/semantic.min.css">
</head>
<body style="background-color: #EEEEEE;">
<div class="ui inverted menu" style="margin: -0.1em; background-color: #FA6900;">
<a class="item" href="./">Home</a>
<a class="item" href="./about.html">About</a>
<a class="item" href="./register.html">Register</a>
<div class="right menu">
<a class="item" href="./login.html">Login</a>
</div>
</div>
<center>
<h1 style="color: #69D2E7; font-size: 75px;">Login</h1>
<hr style="margin-left: 10em; margin-right: 10em;">
<br>
<div class="ui input">
<input type="text" placeholder="Username" style="width:50em;">
</div>
<br><br>
<div class="ui input">
<input type="password" placeholder="Password" style="width:50em;">
</div>
<br><br>
<button class="ui primary button" style="width:25em">
Login
</button>
</center>
</body>
</html>