35 lines
1.0 KiB
PHP
35 lines
1.0 KiB
PHP
@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
|