26 lines
714 B
Cheetah
26 lines
714 B
Cheetah
|
{{ template "header" . }}
|
||
|
|
||
|
<div class="row">
|
||
|
<h2>Create a test</h2>
|
||
|
|
||
|
<form class="twelve columns" action="/test/create" method="POST">
|
||
|
<div class="row">
|
||
|
<label for="test_name">
|
||
|
Test name:
|
||
|
<input id="test_name" class="u-full-width" type="text" name="test_name" placeholder="My hardware benchmarking test">
|
||
|
</label>
|
||
|
</div>
|
||
|
|
||
|
<div class="row">
|
||
|
<label for="test_description">
|
||
|
Test description:
|
||
|
<textarea id="test_description" class="twelve columns" cols="30" rows="10" name="test_description"></textarea>
|
||
|
</label>
|
||
|
</div>
|
||
|
|
||
|
<input class="button-primary u-full-width" type="submit" value="Submit">
|
||
|
</form>
|
||
|
</div>
|
||
|
|
||
|
{{ template "footer" . }}
|