Added basic naviagation

This commit is contained in:
CommanderStrax 2015-12-23 17:03:33 -06:00
parent 6e09d44228
commit 011eda51e1
5 changed files with 39 additions and 1 deletions

9
web/about.html Normal file
View file

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<title>About</title>
</head>
<body>
<h1>EasyCTF is Fun!</h1>
</body>
</html>

View file

@ -1,10 +1,17 @@
<html ng-app="myApp" ng-controller="myCtrl">
<head>
<title>EasyCTF 2016</title>
<link type="text/css" rel="stylesheet" href="style.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.4.8/angular.min.js" integrity="sha384-r1y8TJcloKTvouxnYsi4PJAx+nHNr90ibsEn3zznzDzWBN9X3o3kbHLSgcIPtzAp" crossorigin="anonymous"></script>
<script src="ascript.js"></script>
</head>
<body>
<h1>Angular.js Status: <span ng-bind="test" style="color:red" id="result">Failed!</span></h1>
<marquee id="status">Angular.js Status: <span ng-bind="test" style="color:red" id="result">Failed!</span></marquee>
<ul>
<li><a href="./">Home</a></li>
<li><a href="./about.html">About</a></li>
<li><a href="./login.html">Login</a></li>
<li><a href="./register.html">Register</a></li>
</ul>
</body>
</html>

9
web/login.html Normal file
View file

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<title>Login</title>
</head>
<body>
<h1>Please Login to EasyCTF</h1>
</body>
</html>

9
web/register.html Normal file
View file

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<title>Register</title>
</head>
<body>
<h1>Please Register for EasyCTF</h1>
</body>
<html>

4
web/style.css Normal file
View file

@ -0,0 +1,4 @@
marquee {
background-color: black;
color:white;
}