You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
711 B
33 lines
711 B
3 years ago
|
{% extends "base.html" %}
|
||
|
{% block main %}
|
||
|
<section id="buttons">
|
||
|
<div class="signin">
|
||
|
<a href="/login">
|
||
|
<input type="button" name="button" value="Sign in"></input>
|
||
|
</a>
|
||
|
</div>
|
||
|
<div class="signin">
|
||
|
<a href="/register">
|
||
|
<input type="button" name="button" value="Register"></input>
|
||
|
</a>
|
||
|
</div>
|
||
|
</section>
|
||
|
|
||
|
{% if current_user.is_authenticated %}
|
||
|
<h2> Hi {{ current_user.email }}! </h2>
|
||
|
{% endif %}
|
||
|
|
||
|
<!-- a section with all the distribusis listed in the distribusiverse -->
|
||
|
<section id="distribusiverse">
|
||
|
<h2>List of distribusis</h2>
|
||
|
<ul>
|
||
|
<li>CCL</li>
|
||
|
<li>Crunk</li>
|
||
|
<li>CMOS4010</li>
|
||
|
<li>CMOS4046</li>
|
||
|
<li>Other Names</li>
|
||
|
<li>List of stuff</li>
|
||
|
</ul>
|
||
|
</section>
|
||
|
{% endblock %}
|