49 lines
1018 B
HTML
49 lines
1018 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||
|
|
||
|
<title>sms-receiver ~ Public phone numbers</title>
|
||
|
|
||
|
<link href="/static/min.css" rel="stylesheet" type="text/css">
|
||
|
|
||
|
<style>
|
||
|
.hero {
|
||
|
background: #eee;
|
||
|
padding: 20px;
|
||
|
border-radius: 10px;
|
||
|
margin-top: 1em;
|
||
|
}
|
||
|
|
||
|
.hero h1 {
|
||
|
margin-top: 0;
|
||
|
margin-bottom: 0.3em;
|
||
|
}
|
||
|
|
||
|
.c4 {
|
||
|
padding: 10px;
|
||
|
box-sizing: border-box;
|
||
|
}
|
||
|
|
||
|
.c4 h3 {
|
||
|
margin-top: 0;
|
||
|
}
|
||
|
|
||
|
.c4 a {
|
||
|
margin-top: 10px;
|
||
|
display: inline-block;
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
{% include 'nav.html' %}
|
||
|
<div class="container">
|
||
|
<div class="row">
|
||
|
{% for number in numbers %}
|
||
|
<div class="col c4"><h3><img src="/static/img/flags/{{ number.country.lower() }}.png"> +{{ number.msisdn }}</h3>From: {{ number[1] }}<br>{{ number[0] }}<br><a href="/public/{{ number.uid }}" class="btn btn-sm btn-a">View SMS!</a></div>
|
||
|
{% endfor %}
|
||
|
</div>
|
||
|
</body>
|
||
|
</html>
|