Progress Adding More Fields

This commit is contained in:
Leo Herzog
2020-06-21 15:50:06 -04:00
parent 88a9210cdb
commit 31649fc59b
4 changed files with 49 additions and 6 deletions

View File

@@ -14,7 +14,24 @@
<div class="form-group">
<label class="col-form-label" for="name">Torrent Name</label>
<input id="name" type="text" class="form-control" value="" />
<input id="name" type="text" class="form-control" value="" placeholder="No name" />
</div>
<div class="form-group">
<label class="col-form-label" for="creationDate">Created</label>
<input id="creationDate" type="datetime-local" class="form-control" value="" placeholder="Empty" />
<label class="col-form-label" for="createdBy">with</label>
<input id="createdBy" type="text" class="form-control" value="" placeholder="Unspecified" disabled />
</div>
<div class="form-group">
<label class="col-form-label" for="comment">Comment</label>
<input id="comment" type="text" class="form-control" value="" placeholder="Empty" />
</div>
<div class="form-group">
<label class="col-form-label" for="hash">Unique Hash</label>
<input id="hash" type="text" class="form-control" value="" placeholder="" disabled/>
</div>
<script src="bundle.js"></script>