mirror of
https://git.wownero.com/wownero/YellWOWPages.git
synced 2024-08-15 01:03:25 +00:00
49 lines
No EOL
1.1 KiB
HTML
49 lines
No EOL
1.1 KiB
HTML
{% extends "base.html" %}
|
|
{% block content %}
|
|
<div style="display:none">
|
|
{% block title %}YellWOWPages - About{% endblock %}
|
|
</div>
|
|
|
|
<div id="main">
|
|
<h1>About</h1>
|
|
<p>
|
|
Search for any Wownero <em>address</em> you want by username and pay
|
|
the world!
|
|
<br>
|
|
This application uses <u>Wownero's Centralized Authentication Service.</u>
|
|
</p>
|
|
<p>
|
|
Other Wownero related stuff:
|
|
<br>
|
|
<a href="https://wownero.org/">WebSite</a>
|
|
<br>
|
|
<a href="https://suchwow.xyz">SuchWow</a>
|
|
<br>
|
|
<a href="https://git.wownero.com">Official Git</a>
|
|
<br>
|
|
<a href="https://discord.com/invite/ykZyAzJhDK">Discord server</a>
|
|
</p>
|
|
<p>
|
|
Made by <a href="https://notmtth.xyz">NotMtth</a> and <code>dsc</code>
|
|
</p>
|
|
</div>
|
|
|
|
<style>
|
|
#main{
|
|
width: 100%;
|
|
height: 80vh;
|
|
display: grid;
|
|
place-content: center;
|
|
text-align: center;
|
|
}
|
|
form{
|
|
height: 50px;
|
|
}
|
|
@media (max-width: 800px) {
|
|
kbd{
|
|
width: 100vw;
|
|
}
|
|
}
|
|
</style>
|
|
|
|
{% endblock %} |