✨🚧 Implement admin interface to manage shares and users
This commit is contained in:
24
templates/create-share.html
Normal file
24
templates/create-share.html
Normal file
@@ -0,0 +1,24 @@
|
||||
{{ define "page-styles"}}
|
||||
<style>
|
||||
#content label,
|
||||
#content label > * {
|
||||
display: block;
|
||||
}
|
||||
</style>
|
||||
{{ end }}
|
||||
|
||||
{{ define "page-content" }}
|
||||
<form method="post">
|
||||
<div>
|
||||
<label>
|
||||
Name: <input type="text" width="40" name="name" placeholder="Enter name"/>
|
||||
</label>
|
||||
<label>
|
||||
Role: <textarea rows="5" cols="40" name="description" placeholder="Enter description"></textarea>
|
||||
</label>
|
||||
</div>
|
||||
<div>
|
||||
<input type="submit" value="Create share"/>
|
||||
</div>
|
||||
</form>
|
||||
{{ end }}
|
||||
Reference in New Issue
Block a user