tesses-cms/Tesses.CMS/Assets/Upload.html

54 lines
2.1 KiB
HTML

<div class="container">
<div class="alert alert-info" role="alert">
Other categories will be available in the future
</div>
<form action="/upload" method="post">
<input type="hidden" name="csrf" value="{{csrf}}">
<div class="mb-3">
<label for="name" class="form-label">Name</label>
<input type="text" class="form-control" id="name" name="name" aria-describedby="message">
<div id="message" class="form-text">This is the name that is used in URL, no spaces or /\&quot;&amp;,?|:;*@!#</div>
</div>
<div class="mb-3">
<label for="proper-name" class="form-label">Proper Name</label>
<input type="text" class="form-control" id="proper-name" name="proper_name">
</div>
<div class="mb-3">
<label for="exampleFormControlTextarea1" class="form-label">Description</label>
<textarea name="description" class="form-control" id="exampleFormControlTextarea1" rows="5"></textarea>
</div>
<div class="form-check">
<input class="form-check-input" checked type="radio" name="type" value="movie" id="movie">
<label class="form-check-label" for="movie">
Movie
</label>
</div>
<div class="form-check">
<input class="form-check-input" type="radio" name="type" value="show" id="show">
<label class="form-check-label" for="show">
Show
</label>
</div>
<!--<div class="form-check">
<input class="form-check-input" type="radio" name="type" value="single" id="music-single">
<label class="form-check-label" for="music-single">
Music - Single
</label>
</div>-->
<div class="form-check">
<input class="form-check-input" type="radio" name="type" value="album" id="music-album">
<label class="form-check-label" for="music-album">
Music - Album
</label>
</div>
<!--
<div class="form-check">
<input class="form-check-input" type="radio" name="type" value="software" id="software">
<label class="form-check-label" for="software">
Software
</label>
</div>-->
<input type="submit" value="Next" class="btn btn-primary">
</form>
</div>