35 lines
1.4 KiB
Cheetah
35 lines
1.4 KiB
Cheetah
{{ template "header" . }}
|
|
|
|
<div class="row">
|
|
<h2>Add new hardware</h2>
|
|
|
|
<form class="twelve columns" action="/hardware/{{ .hardware.ID }}/edit" method="POST">
|
|
<div class="row">
|
|
<div class="nine columns">
|
|
<label for="hardware_name">
|
|
Hardware name:
|
|
<input id="hardware_name" class="u-full-width" type="text" name="hardware_name" placeholder="EVGA RTX 3080 Ti" value="{{ .hardware.Name }}">
|
|
</label>
|
|
</div>
|
|
|
|
<div class="three columns">
|
|
<label for="hardware_type">
|
|
Hardware type:
|
|
<select id="hardware_type" class="u-full-width" name="hardware_type">
|
|
<option value="cpu" {{ if eq .hardware.Type "cpu" }}selected{{ end }}>Processor</option>
|
|
<option value="mem" {{ if eq .hardware.Type "mem" }}selected{{ end }}>Memory</option>
|
|
<option value="gpu" {{ if eq .hardware.Type "gpu" }}selected{{ end }}>Graphics Card</option>
|
|
<option value="ssd" {{ if eq .hardware.Type "ssd" }}selected{{ end }}>Solid State Drive</option>
|
|
<option value="hdd" {{ if eq .hardware.Type "hdd" }}selected{{ end }}>Hard Drive</option>
|
|
<option value="nic" {{ if eq .hardware.Type "nic" }}selected{{ end }}>Network Card</option>
|
|
</select>
|
|
</label>
|
|
</div>
|
|
</div>
|
|
|
|
<input class="button-primary u-full-width" type="submit" value="Submit">
|
|
</form>
|
|
</div>
|
|
|
|
{{ template "footer" . }}
|