Development of an internal social media platform with personalised dashboards for students
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.

index.html 576B

1234567891011121314151617181920212223
  1. {% extends "base.html" %}
  2. {% block content %}
  3. <div class="container">
  4. <div class="jumbotron">
  5. <h1>efi Medizintechnik Informationssystem</h1>
  6. {% if user.is_authenticated %}
  7. <p>Herzlich Willkommen {{user.get_username}}!</p>
  8. {% else %}
  9. <p>Bitte melden Sie sich mit Ihrer Domänenkennung an.</p>
  10. {% endif %}
  11. </div>
  12. {% if error %}
  13. <div class="alert alert-danger">
  14. {{ error }}
  15. </div>
  16. {% endif %}
  17. </div>
  18. {% endblock %}