e9825a2683
* Remove Bootstrap and Jquery, and create basic nav * More improvements to navbar, as well as work on _badgemenu * Complete navbar HTML, obviously it still looks horrendous * Change layout on torrent table, using grids. * Remove Bootstrap and Jquery, and create basic nav * More improvements to navbar, as well as work on _badgemenu * Complete navbar HTML, obviously it still looks horrendous * Change layout on torrent table, using grids. * HOLY FUCK INDEX IS /DONE/ * DO UPLOAD PAGE, DELETE OLD SHITTY CSS * Complete login page * Remove Bootstrap and Jquery, and create basic nav * More improvements to navbar, as well as work on _badgemenu * Complete navbar HTML, obviously it still looks horrendous * Change layout on torrent table, using grids. * Remove Bootstrap and Jquery, and create basic nav * More improvements to navbar, as well as work on _badgemenu * Complete navbar HTML, obviously it still looks horrendous * HOLY FUCK INDEX IS /DONE/ * DO UPLOAD PAGE, DELETE OLD SHITTY CSS * Complete login page * Begin work on profile page * fucking git, man * Damn, that looks sexy * Complete login and register pages, include very minimal grid system, and delete all of view template * Do view page! * Finish view even more * Fix dates and filesizes in torrent table * Improve comment/captcha input * Actually add magnet and torrent buttons * Add open-iconic instead of fontawesome * Improve user side-panel * Rename Category_* to CategoryName * Beginning to finish up * Implement themes and add basic mobile support to front page * Fix some slight color errors * Fix captcha on dark * magnet and torrent links on view
41 lignes
2,5 Kio
HTML
41 lignes
2,5 Kio
HTML
{{define "title"}}Upload magnet{{end}}
|
||
{{define "content"}}
|
||
{{with .Upload}}
|
||
<div style="text-align: left;" class="box">
|
||
<form enctype="multipart/form-data" role="upload" method="POST">
|
||
{{ range (index $.FormErrors "errors")}}
|
||
<div class="alert alert-danger"><a class="panel-close close" data-dismiss="alert">×</a><i class="glyphicon glyphicon-exclamation-sign"></i> {{ . }}</div>
|
||
{{end}}
|
||
<label class="input-label" for="name">{{call $.T "name"}}</label> <br>
|
||
<input type="text" name="name" id="name" class="form-input up-input" placeholder="{{call $.T "file_name"}}" value="{{.Name}}" autofocus required> <br>
|
||
<label class="input-label" for="torrent">{{call $.T "torrent_file"}}</label> <br>
|
||
<input type="file" name="torrent" id="torrent" class="form-input up-input" accept=".torrent">
|
||
<i>{{call $.T "uploading_file_prefills_fields"}}</i><br>
|
||
<label class="input-label" for="magnet">{{call $.T "magnet_link"}}</label><br>
|
||
<input type="text" name="magnet" id="magnet" class="form-input up-input"
|
||
style="width:30rem" placeholder="{{call $.T "magnet_link"}}" value="{{.Magnet}}">
|
||
<i>{{ call $.T "please_include_our_tracker" }}</i> <br>
|
||
|
||
<label class="input-label" for="c">{{call $.T "category"}}</label> <br>
|
||
<select name="c" id="c" class="form-input up-input" required>
|
||
<option value="">{{call $.T "select_a_torrent_category"}}</option>
|
||
{{ range $name_cat, $id_cat := (GetCategories false) }}
|
||
<option value="{{ $id_cat }}" {{if eq $.Upload.Category $id_cat }}selected{{end}}>{{call $.T $name_cat }}</option>
|
||
{{ end }}
|
||
</select>
|
||
<input type="checkbox" name="remake" id="remake" >
|
||
<label for="remake">{{call $.T "mark_as_remake"}}</label> <br>
|
||
|
||
<label class="input-label" for="website_link">{{call $.T "website_link"}}</label> <br>
|
||
<input name="website_link" id="website_link" class="form-input up-input" type="text" value="{{.WebsiteLink}}"> <br>
|
||
<label class="input-label" for="desc">{{call $.T "torrent_description"}}</label>
|
||
<i>{{call $.T "description_markdown_notice"}}</i> <br>
|
||
<textarea name="desc" id="desc" class="form-input up-input" rows="50" cols="50">{{.Description}}</textarea> <br>
|
||
|
||
{{block "captcha" (makeCaptchaData .CaptchaID $.T)}}{{end}}
|
||
|
||
<button type="submit" class="form-input up-btn">{{call $.T "upload"}}</button>
|
||
</form>
|
||
</div>
|
||
{{end}}
|
||
{{end}}
|