Skip to content
Permalink
7b00c58f45
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
15 lines (15 sloc) 558 Bytes
<!DOCTYPE html>
<html lang="en">
<head>
<title>Main Menu</title>
</head>
<body>
<header>
<h1>Main Menu</h1>
</header>
<button type="button" name="Menu" onclick="window.location='/menu'">Menu</button><br><br>
<button type="button" name="Order" onclick="window.location='/order'">Order</button><br><br>
<button type="button" name="Ready" onclick="window.location='/ready'">Ready</button><br><br>
<button type="button" name="Log Out" onclick="window.location='/login'">Log Out</button>
</body>
</html>