Initial commit
This commit is contained in:
22
app/plugins/fileshare/views/edit.html
Normal file
22
app/plugins/fileshare/views/edit.html
Normal file
@ -0,0 +1,22 @@
|
||||
<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>
|
Reference in New Issue
Block a user