Files
thetempusproject/app/plugins/fileshare/views/edit.html
2024-08-04 21:15:59 -04:00

22 lines
982 B
HTML

<legend>Edit File</legend>
<form action="" method="post" class="form-horizontal" enctype="multipart/form-data">
<input type="hidden" name="token" value="{TOKEN}">
<div class="form-group">
<label for="name" class="col-lg-3 control-label">Name</label>
<div class="col-lg-3">
<input type="text" class="form-control" name="name" id="name" value="{name}">
</div>
</div>
<div class="form-group">
<label for="file" class="col-lg-3 control-label">File (uploading a new file will replace the existing file)</label>
<div class="col-lg-3">
<input type="file" class="form-control" name="file" id="file">
</div>
</div>
<div class="form-group">
<label for="submit" class="col-lg-3 control-label"></label>
<div class="col-lg-3">
<button name="submit" value="submit" type="submit" class="btn btn-lg btn-primary center-block ">Save</button>
</div>
</div>
</form>