Adding all sorts of goodies.
This commit is contained in:
38
public/pages/add-scorecard.html
Normal file
38
public/pages/add-scorecard.html
Normal file
@@ -0,0 +1,38 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>Add New Scorecard</title>
|
||||
{% header %}
|
||||
</head>
|
||||
<body>
|
||||
<header id="site-header">
|
||||
<div id="site-name">
|
||||
<a href="/">BatFlip</a>
|
||||
</div>
|
||||
<div id="site-menu">
|
||||
<ul>
|
||||
<li><a href="/scorecards">Past Scorecards</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</header>
|
||||
<div id="main-content">
|
||||
<table id="home-scorecard" class="styled-table">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Name</th>
|
||||
<th>Date</th>
|
||||
<th>Score</th>
|
||||
<th>Actions</th>
|
||||
</tr>
|
||||
</thead
|
||||
<tbody>
|
||||
<tr>
|
||||
<td><input type="text" name="name" placeholder="Name" /></td>
|
||||
<td><input type="text" name="date" placeholder="Date" /></td>
|
||||
<td><input type="text" name="score" placeholder="Score" /></td>
|
||||
<td><input type="submit" value="Add" /></td>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user