Added ability to create projects

This commit is contained in:
2025-07-14 13:53:50 -04:00
parent c9ad5df2ed
commit e09d399c98
9 changed files with 80 additions and 19 deletions

View File

@ -1,13 +1,13 @@
{{ template "header" . }}
<div class="row">
<h2>Add a project</h2>
<h2>Create a project</h2>
<form class="twelve columns" action="/project/add" method="POST">
<form class="twelve columns" action="/project/create" method="POST">
<div class="row">
<label for="project_title">
Project title:
<input id="project_title" class="u-full-width" type="text" name="project_title" placeholder="My hardware benchmarking project">
<label for="project_name">
Project name:
<input id="project_name" class="u-full-width" type="text" name="project_name" placeholder="My hardware benchmarking project">
</label>
</div>