Skip to content
Permalink
53fc0b6f10
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
23 lines (21 sloc) 670 Bytes
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Log In</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>Log In</h1>
{{#if msg}}
<p class="msg">{{msg}}</p>
{{/if}}
<form action="/login" method="post">
<p>Username:<br /><input type="text" name="user" placeholder="your username" value="{{user}}" autofocus></p>
<p>Password:<br /><input type="password" name="pass" placeholder="your password" value=""></p>
<p><input type="submit" value="Log in"></p>
</form>
</body>
</html>