Skip to content
Permalink
1f55a984e3
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
40 lines (30 sloc) 660 Bytes
{% extends 'base_page.html' %}
<!-- TITLE -->
{% block title %} {% endblock %}
<!-- JS -->
{% block js %}
{% endblock %}
<!-- CSS -->
{% block css %}
{% endblock %}
<!-- BUTTON -->
{% block b1 %}
<form action="profile" method="GET">
<button class="main_button">Profile</button>
</form>
{% endblock %}
{% block b2 %}
<form action="{{url_for('map.index')}}" method="GET">
<button class="main_button">Map</button>
</form>
{% endblock %}
{% block b3 %}
<form action="test" method="GET">
<button class="main_button">Test</button>
</form>
{% endblock %}
<!-- Body -->
{% block body %}
<div class="content_main">
</div>
{% endblock %}