mirror of
https://github.com/Eggbertx/gochan.git
synced 2025-08-04 03:56:24 -07:00
49 lines
No EOL
2.9 KiB
HTML
49 lines
No EOL
2.9 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Banned</title>
|
|
<link rel="shortcut icon" href="{{.config.SiteWebfolder}}favicon.png">
|
|
<link rel="stylesheet" href="{{.config.SiteWebfolder}}css/global.css" />
|
|
<link id="theme" rel="stylesheet" href="{{.config.SiteWebfolder}}css/{{.config.DefaultStyle}}" />
|
|
<script type="text/javascript" src="{{.config.SiteWebfolder}}javascript/consts.js"></script>
|
|
<script type="text/javascript" src="{{.config.SiteWebfolder}}javascript/jquery-3.3.1.min.js"></script>
|
|
<script type="text/javascript" src="{{.config.SiteWebfolder}}javascript/gochan.js"></script>
|
|
</head>
|
|
<body>
|
|
<div id="top-pane">
|
|
<span id="site-title">{{.config.SiteName}}</span><br />
|
|
<span id="site-slogan">{{.config.SiteSlogan}}</span>
|
|
</div><br />
|
|
<div class="section-block" style="margin: 0px 26px 0px 24px">
|
|
<div class="section-title-block">
|
|
<span class="section-title"><b>{{if bannedForever .ban}}YOUR'E PERMABANNED, IDIOT!{{else if isBanned .ban .banBoards}}YOU ARE BANNED :({{else}}YOU ARE NOT BANNED :){{end}}</b></span>
|
|
</div>
|
|
<div class="section-body" style="padding-top:8px">{{if not (isBanned .ban .banBoards)}}<div style="text-align:center;">You're not banned. Good job.</div><br /><img id="banpage-image" src="/notbanned.png" style="display: block;margin-left: auto;margin-right: auto;"/><br />{{else}}
|
|
<div id="ban-info" style="float:left">{{if eq .ban.Boards ""}}
|
|
You are banned from posting on <b>all boards</b> for the following reason:{{else}}
|
|
You are banned from posting on <b>{{.ban.Boards}}</b> for the following reason:{{end}}
|
|
<br /><br />
|
|
<b>{{.ban.Reason}}</b>
|
|
<br /><br />{{$expires_timestamp := formatTimestamp .ban.Expires}}{{$appeal_timestamp := formatTimestamp .ban.AppealAt}}
|
|
Your ban was placed on {{formatTimestamp .ban.Timestamp}} and will
|
|
{{if .ban.Permaban}}<b>not expire</b>{{else}}expire on <b>{{$expires_timestamp}}</b>{{end}}.<br />
|
|
Your IP address is <b>{{.ban.IP}}</b>.<br /><br />
|
|
{{if .ban.CanAppeal}}You may appeal this ban:<br />
|
|
<form id="appeal-form" action="/banned" method="POST">
|
|
<textarea rows="4" cols="48" name="appealmsg" id="postmsg" placeholder="Appeal message"></textarea><br />
|
|
<input type="submit" value="Submit" /><br />
|
|
</form>{{else}}You may <b>not</b> appeal this ban.<br />{{end}}
|
|
</div>{{if bannedForever .ban}}
|
|
<img id="banpage-image" src="/permabanned.jpg" style="float:right; margin: 4px 8px 8px 4px"/><br />
|
|
<audio id="jack" preload="auto" autobuffer loop>
|
|
<source src="{{.config.SiteWebfolder}}hittheroad.ogg" />
|
|
<source src="{{.config.SiteWebfolder}}hittheroad.wav" />
|
|
<source src="{{.config.SiteWebfolder}}hittheroad.mp3" />
|
|
</audio>
|
|
<script type="text/javascript">
|
|
document.getElementById("jack").play();
|
|
</script>{{else if isBanned .ban .banBoards}}
|
|
<img id="banpage-image" src="/banned.jpg" style="float:right; margin: 4px 8px 8px 4px"/><br />{{end}}
|
|
{{end}}</div>
|
|
</div>
|
|
{{template "page_footer.html" .}} |