2020-11-29 02:05:19 +01:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html class="no-js" lang="fr">
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<meta name="description" content="">
|
|
|
|
<meta name="author" content="">
|
|
|
|
<link rel="icon" href="../../favicon.ico">
|
|
|
|
|
2022-07-10 15:09:03 +02:00
|
|
|
<title>Un serveur et des ...</title>
|
2020-11-29 02:05:19 +01:00
|
|
|
|
|
|
|
<!-- Bootstrap core CSS -->
|
|
|
|
<link href="{{ url_for('static', filename='bootstrap.min.css') }}" rel="stylesheet">
|
|
|
|
<!-- Bootstrap theme -->
|
|
|
|
<link href="{{ url_for('static', filename='bootstrap-theme.min.css') }}" rel="stylesheet">
|
|
|
|
<!-- Custom styles for this template -->
|
|
|
|
<link href="{{ url_for('static', filename='up.css') }}" rel="stylesheet">
|
|
|
|
<link href="{{ url_for('static', filename='cover.css') }}" rel="stylesheet">
|
|
|
|
<script type="text/javascript" src="{{ url_for('static', filename='divhider.js') }}"></script>
|
|
|
|
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
|
|
|
|
{% block main %}
|
|
|
|
|
|
|
|
<div class="site-wrapper">
|
|
|
|
|
|
|
|
<div class="site-wrapper-inner">
|
|
|
|
|
|
|
|
<div class="cover-container">
|
|
|
|
|
|
|
|
<div class="masthead clearfix">
|
|
|
|
<div class="inner">
|
2022-07-05 01:18:52 +02:00
|
|
|
<h3 class="masthead-brand">Pywallter</h3>
|
2020-11-29 02:05:19 +01:00
|
|
|
<ul class="nav masthead-nav">
|
2022-07-05 01:18:52 +02:00
|
|
|
<li class="active"><a href="/filesupload/"></a></li>
|
2022-07-10 15:09:03 +02:00
|
|
|
<li><a href="/inscription/">Inscription</a></li>
|
2020-11-29 02:05:19 +01:00
|
|
|
<li><a href="#">Contact</a></li>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="inner cover">
|
|
|
|
<h1 class="cover-heading">Restez libres</h1>
|
2022-07-10 15:09:03 +02:00
|
|
|
<p class="lead">Bienvenue sur Olala, un portail utilisateurs libre basé sur Flask et hébergé sur un petit ordinateur.
|
|
|
|
Tu peux importer des fichiers pour ton site, consulter ou participer
|
|
|
|
au tableau des post-its pour communiquer avec les autres membres ou
|
|
|
|
simplement savoir ce qu'il se passe sur le serveur.<br/>
|
|
|
|
A venir: tu pourras gérer ton compte MAIL et XMPP bientôt si les programmes
|
|
|
|
sont configurés.
|
|
|
|
<br/>
|
|
|
|
<strong>Site en construction permanente. </strong></p>
|
2020-11-29 02:05:19 +01:00
|
|
|
<br>
|
|
|
|
<p class="lead">
|
|
|
|
<form method="POST" action="{{ url_for('loginlogout.login') }}">
|
|
|
|
<input type="text" name="user" id="user" placeholder="Utilisateur" class="form-control" width="200px"><br />
|
|
|
|
<input type="password" name="passwd" id="passwd" placeholder="Mot de passe" class="form-control"><br />
|
|
|
|
<br>
|
|
|
|
<button id="tada" class="btn btn-default btn-primary" type="submit">Login</button>
|
|
|
|
</form>
|
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
<!-- Bootstrap core JavaScript -->
|
|
|
|
<!--================================================== -->
|
|
|
|
<!-- Placed at the end of the document so the pages load faster -->
|
|
|
|
<script src="{{ url_for('static', filename='jquery.min.js') }}"></script>
|
|
|
|
<script src="{{ url_for('static', filename='bootstrap.min.js') }}"></script>
|
|
|
|
<script src="{{ url_for('static', filename='docs.min.js') }}"></script>
|
|
|
|
|
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|