Skip to content
Permalink
a8fdbf4ca9
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
26 lines (23 sloc) 1.1 KB
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>{{ title }}</title>
<link href ="css/homepage.css" type ="text/css" rel = "stylesheet"/>
</head>
<body>
<header>
<h1>HEADER AND NAVIGATION WILL GO HERE</h1>
<nav>
<form action = "/"><input class = "toolbar floatLeft" type="submit" value="Home"></form>
<form action = "/createquestion"><input class = "toolbar floatLeft" type="submit" value="Add"></form>
<form action = "/"><input class = "toolbar floatRight" type="submit" value="Sign up"></form>
<form action = "/"><input class = "toolbar floatRight" type="submit" value="Login"></form>
<form action="/" method="get">
<input id = "searchBox" type="text" name="search" placeholder="Search" value="{{query}}">
<input id = "searchButton" type="submit" value="Search">
</form>
</nav>
</header>