44 lines
1.2 KiB
HTML
44 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Movies</title>
|
|
<!-- Latest compiled and minified CSS -->
|
|
<link rel="stylesheet" href="joshua_style.css">
|
|
<link rel="stylesheet" type="text/css" href="scott_style.css">
|
|
</head>
|
|
<body>
|
|
|
|
<!-- Navigation -->
|
|
<nav>
|
|
<div class="topnav">
|
|
<a class="title" href="movies.html">GMDB</a>
|
|
<a class="links" href="movies.html">Movies</a>
|
|
<a class="links" href="login.html">Login</a>
|
|
<div class="topnav-right">
|
|
<form class="submit" action="#">
|
|
<input class="submit-bar" type="text" placeholder="Search" name="search">
|
|
<button type="submit"><i class="fa fa-search"></i>Submit</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</nav>
|
|
|
|
<!-- Page Content -->
|
|
<div class="container">
|
|
<div class="loginform">
|
|
<form method="post" action="login.html">
|
|
<label for="email">Email:</label>
|
|
<input class="textform" type="text" name="email" id="email">
|
|
<label for="password">Password:</label>
|
|
<input class="textform" type="password" name="password" id="password">
|
|
<input class="giantbutton" type="submit" value="Login">
|
|
</form>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- JS -->
|
|
<script src=""></script>
|
|
</body>
|
|
</html>
|