skiqqy.xyz/assets/api_templates/domain_status.html

33 lines
407 B
HTML
Raw Normal View History

2021-02-11 14:19:23 +00:00
<style>
body {
background-color:black;
color:white
}
a {
color:#DC143C
}
.header {
padding: 60px;
text-align: center;
font-size: 30px;
}
.para {
text-align: center;
font-size:15
}
input[type=text] {
border: 2px solid black;
border-radius: 4px;
}
</style>
<div class=header>{{ TITLE }}</div>
<div class=para>
{% for res in results %}
<p>{{ res }}</p>
{% endfor %}
</div>