Initial import

This commit is contained in:
2026-06-04 11:13:34 +01:00
commit 563d9cc96d
143 changed files with 10572 additions and 0 deletions
+34
View File
@@ -0,0 +1,34 @@
@extends("layout.main")
@section("content")
<br/>
<h1>Add system</h1>
<p>Adding a system allows you to gather together all the documents you need
for working with a specific computer you own, along with all the expansion
cards that are inside that computer.</p>
<br/>
<form action='/system/add' method="POST">
<label for="name" class="form-label">System Name</label>
<input class="form-control" type="text" name="name"></input>
<p>Give your system a friendly name. I'm sure you've already named all your computers.</p>
<label for="model" class="form-label">Model</label>
<input class="form-control" type="text" name="model"></input>
<p>What kind of computer is this system?</p>
<label for="notes" class="form-label">Notes</label>
<textarea class="form-control" name="notes">
</textarea>
<p>Add any notes about the system you like here.</p>
<div class="text-end">
<div class="btn-group">
<a class="btn btn-danger" href="/systems">Cancel</a>
<input class="btn btn-success" type="Submit" value="Add System"></input>
</div>
</div>
</form>
@endsection