File size: 598 Bytes
3cf589c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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="home-div">
        <img src="{{ url_for('static', filename='images/home.jpg') }}" class="home-img">
        <div class="info-div">
            {% if g.user %}
                <h1>Welcome {{ g.user.username.capitalize() }}, </h1>
            {% else %}
                <h1>Sign In, Guest </h1>
            {% endif %}
            <h4> Explore the Test Preparation 
                exclusively made for you!
            </h4>
            <a href="{{ url_for('question', id=1)}}">Take the test</a>
        </div>
    </div>
{% endblock %}