-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
45 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
{% load static %} | ||
{% load i18n %} | ||
|
||
{% comment "License" %} | ||
* OSIS stands for Open Student Information System. It's an application | ||
* designed to manage the core business of higher education institutions, | ||
* such as universities, faculties, institutes and professional schools. | ||
* The core business involves the administration of students, teachers, | ||
* courses, programs and so on. | ||
* | ||
* Copyright (C) 2015-2019 Université catholique de Louvain (http://www.uclouvain.be) | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation, either version 3 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* | ||
* A copy of this license - GNU General Public License - is available | ||
* at the root of the source code of this program. If not, | ||
* see http://www.gnu.org/licenses/. | ||
{% endcomment %} | ||
|
||
<div id="main" class="container-fluid p0-50" | ||
style="box-sizing: border-box; color: rgb(51, 51, 51); font-family: 'Armata', sans-serif;padding-left: 50px; padding-right: 50px; font-size: 14px; line-height: 20px"> | ||
<div class="container" | ||
style="box-sizing: border-box;padding-left: 15px; padding-right: 15px; margin-left: 325px; margin-right: 325px;width: 1170px"> | ||
<div class="row" style="box-sizing: border-box;margin-left: -15px; margin-right: -15px"> | ||
<div class="center-block" style="display: block; box-sizing: border-box;"> | ||
<h3 style="box-sizing:border-box; font-size: 24px;font-weight: 500; line-height: 26.4px;margin-bottom: 10px;margin-top: 20px"> | ||
{% trans 'Expired token.' %} | ||
</h3> | ||
</div> | ||
<div class="center-block" style="display: block; box-sizing: border-box;"> | ||
<h4 style="box-sizing:border-box; font-size: 18px;font-weight: 500; line-height: 19.8px;margin-bottom: 10px;margin-top: 10px"> | ||
{% trans "You cannot access the file because the url's validity period has expired." %} | ||
</h4> | ||
</div> | ||
</div> | ||
</div> | ||
</div> |