Skip to content
Permalink
24008cbad6
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
22 lines (20 sloc) 642 Bytes
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Home Page</title>
<meta name="description" content="form to add new books">
<meta name="author" content="Mark Tyers">
<link href="style.css" type="text/css" rel="stylesheet" />
</head>
<body>
<h1>Home</h1>
<p>This is a secure page. Users need to have a valid account and be logged in to see it.</p>
<p><a href="/logout">log out</a></p>
<form action="/lights" method="get">
<p><input type="submit" value="Lights page"></p>
</form>
<form action="/temp" method="get">
<p><input type="submit" value="temp page"></p>
</form>
</html>