{% extends "base.html" %} {% block title %}Welcome to Grimvault{% endblock %} {% block content %}

Welcome to Grimvault

42hr encrypted cloud storage for your files.

{% if current_user.is_authenticated %}

Welcome back, {{ current_user.username }}!

{% if current_user.is_admin %} Go to Admin Dashboard {% else %} Go to My Files {% endif %} {% else %} Login Register {% endif %}
{% endblock %}