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
44 lignes
2,2 Kio
HTML
44 lignes
2,2 Kio
HTML
{{define "title"}}{{ call $.T "register_title" }}{{end}}
|
|
{{define "contclass"}}cont-view{{end}}
|
|
{{define "content"}}
|
|
{{ with .RegistrationForm }}
|
|
<div class="box">
|
|
<form role="form" method="POST">
|
|
<h2>{{call $.T "signup_box_title" }}</h2>
|
|
{{ range (index $.FormErrors "errors")}}
|
|
<div class="alert alert-danger">{{ . }}</div>
|
|
{{end}}
|
|
<input type="text" name="username" id="display_name" class="form-input up-input" placeholder="{{call $.T "username" }}" value="{{ .Username }}" autofocus> <br>
|
|
{{ range (index $.FormErrors "username")}}
|
|
<p class="text-error">{{ . }}</p>
|
|
{{end}}
|
|
<input type="email" name="email" id="email" class="form-input up-input" placeholder="{{call $.T "email_address" }}" value="{{ .Email }}"> <br>
|
|
{{ range (index $.FormErrors "email")}}
|
|
<p class="text-error">{{ . }}</p>
|
|
{{end}}
|
|
<input type="password" name="password" id="password" class="form-input up-input" placeholder="{{call $.T "password" }}" value="{{ .Password }}"> <br>
|
|
{{ range (index $.FormErrors "password")}}
|
|
<p class="text-error">{{ . }}</p>
|
|
{{end}}
|
|
<input type="password" name="password_confirmation" id="password_confirmation" class="form-input up-input" placeholder="{{call $.T "confirm_password" }}"> <br>
|
|
{{ range (index $.FormErrors "password_confirmation")}}
|
|
<p class="text-error">{{ . }}</p>
|
|
{{end}}
|
|
<span class="button-checkbox">
|
|
<input type="checkbox" name="t_and_c" id="t_and_c" value="1">
|
|
{{ range (index $.FormErrors "t_and_c")}}
|
|
<p class="text-error">{{ . }}</p>
|
|
{{end}}
|
|
</span>
|
|
<p>By checking this box, you agree to the <a onclick="terms()">terms and conditions</a></p>
|
|
<!-- {{call $.T "terms_conditions_confirm" }} -->
|
|
{{block "captcha" (makeCaptchaData .CaptchaID $.T)}}{{end}}
|
|
|
|
<input type="submit" value="{{call $.T "register" }}" class="form-input"></input>
|
|
</form>
|
|
</div>
|
|
<script type="text/javascript" charset="utf-8">function terms() {alert("just don't be a dick thx");}</script>
|
|
|
|
{{end}}
|
|
<!--<p>{{call $.T "terms_conditions_full" }}</p> -->
|
|
{{end}}
|