49 lines
1.9 KiB
HTML
49 lines
1.9 KiB
HTML
<div class="container">
|
|
<form action="/upload" method="post">
|
|
<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 /\"&,?|:;*@!#</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="form-floating">
|
|
<textarea class="form-control" placeholder="Description" name="description" id="floatingTextarea"></textarea>
|
|
<label for="floatingTextarea">Description</label>
|
|
</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="music-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="music-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> |