2021-10-15 14:08:27 +00:00
{% extends "default.html" %}
{% block pagetype %}userpage{% endblock %}
{% block fixedMobileBarJS %}
< script >
2021-12-04 22:43:42 +00:00
var prevScrollpos = window.pageYOffset;
window.onscroll = function () {
var currentScrollPos = window.pageYOffset;
if (prevScrollpos > currentScrollPos) {
document.getElementById("fixed-bar-mobile").style.top = "48px";
document.getElementById("navbar").classList.remove("shadow");
}
else if (currentScrollPos < = 125) {
document.getElementById("fixed-bar-mobile").style.top = "48px";
document.getElementById("navbar").classList.remove("shadow");
2021-10-15 14:08:27 +00:00
}
2021-12-04 22:43:42 +00:00
else {
document.getElementById("fixed-bar-mobile").style.top = "-48px";
document.getElementById("dropdownMenuSortBy").classList.remove('show');
document.getElementById("dropdownMenuFrom").classList.remove('show');
document.getElementById("navbar").classList.add("shadow");
}
prevScrollpos = currentScrollPos;
}
2021-10-15 14:08:27 +00:00
< / script >
{% endblock %}
{% block title %}
< title > @{{u.username}}< / title >
< meta name = "description" content = "Username reserved for: {{u.reserved}}" >
{% endblock %}
{% block adminpanel %}{% endblock %}
{% block content %}
< div class = "row no-gutters" >
< div class = "col-12" >
< div class = "text-center py-7 py-md-8" >
< i class = "fad fa-id-card text-muted mb-5" style = "font-size: 5rem;" > < / i >
< div class = "font-weight-bold text-muted" > Account Reserved< / div >
< div class = "text-muted" > The username @{{u.username}} has been pre-emptively reserved for: {{u.reserved}}< / div >
< div class = "text-muted" > If that's you, or if you are their authorized representative, please contact {{'SITE_NAME' | app_config}} staff in order to obtain access to this account.< / div >
< / div >
< / div >
< / div >
{% endblock %}
{% block pagenav %}
{% endblock %}