2daf6ab8e2
We add a small flask-powered web application in charge of retrieving the PBO-related data from axione.
25 lines
563 B
HTML
25 lines
563 B
HTML
<!doctype html>
|
|
|
|
<html lang="fr">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>Aquilenet: Éligibilité FTTH</title>
|
|
<style>
|
|
{% include 'style.css' %}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<h1 id="aquilenet-title">Aquilenet</h1>
|
|
<div id="container">
|
|
<h1 id="main-title">Test d'Éligibilité FTTH Aquilenet</h1>
|
|
<form method="post" action="/result">
|
|
<label>Numéro de PTO :
|
|
<input name="pto"/>
|
|
</label>
|
|
<button>Tester</button>
|
|
</form>
|
|
</div>
|
|
</body>
|
|
</html>
|