{% extends "class/base.html" %} {% load static %} {% block title %} Classroom {% endblock %} {% block style %} .card{ border-radius: 4px; background: #fff; box-shadow: 0 6px 10px rgba(0,0,0,.08), 0 0 6px rgba(0,0,0,.05); transition: .3s transform cubic-bezier(.155,1.105,.295,1.12),.3s box-shadow,.3s -webkit-transform cubic-bezier(.155,1.105,.295,1.12); padding: 14px 80px 18px 36px; cursor: pointer; } .card:hover{ transform: scale(1.05); box-shadow: 0 10px 20px rgba(0,0,0,.12), 0 4px 8px rgba(0,0,0,.06); } .card img{ position: absolute; top: 20px; right: 15px; max-height: 120px; } .card-1{ background-image: url(https://ionicframework.com/img/getting-started/ionic-native-card.png); background-repeat: no-repeat; background-position: right; background-size: 80px; } .card h3{ font-weight: 600; } {% endblock %} {% block body %}
{% if user.is_authenticated %} {% if messages %} {% endif %} {% else %}

You are not logged in.

Login to get full access to the classroom.

{% endif %}
{% endblock %}