Skip to content
Permalink
f2e37868de
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
27 lines (25 sloc) 967 Bytes
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Create an Account</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 style="background-color:rgb(42, 130, 218);padding:20px;color:antiquewhite;">Create an Account</h1>
<form action="/register" enctype="multipart/form-data" method="post">
<p>Staff Level:<br />
<select name="auth">
<option value="Admin">Admin</option>
<option value="Kitchen">Kitchen</option>
<option value="Waiting">Waiting</option>
</select>
</p>
<p>Username:<br /><input type="text" name="user" placeholder="your preferred username (no spaces)" value=""></p>
<p>Password:<br /><input type="password" name="pass" placeholder="your chosen password" value=""></p>
<p><input type="submit" value="Create"></p>
</form>
</body>
</html>