pslink 0.3.0

A simple webservice that allows registered users to create short links including qr-codes. Anyone can visit the shortened links. This is an ideal setup for small busines or for publishing papers.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{% extends "base.html" %}

{% block content %}
<div class="center">
    <form action="" method="POST">
        <div>
            <label for="username">Benutzername:</label>
            <input type="text" name="username">
        </div>
        <div>
            <label for="password">Passwort:</label>
            <input type="password" name="password">
        </div>
        <input type="submit" value="Login">
    </form>
    <h2>&nbsp;</h2>
</div>
{% endblock %}