Implement non-admin user pdf download
This commit is contained in:
parent
9dea19b9b1
commit
24b0bb3798
|
@ -9,22 +9,23 @@
|
||||||
|
|
||||||
<title>PTUT web title</title>
|
<title>PTUT web title</title>
|
||||||
|
|
||||||
<!-- Icon -->
|
<?php if(in_array('cas_admin', $_SESSION['AUTH'])) { ?>
|
||||||
<link rel='shortcut icon' href='/favicon.ico'>
|
<!-- Icon -->
|
||||||
|
<link rel='shortcut icon' href='/favicon.ico'>
|
||||||
|
|
||||||
<!-- CSS dependencies -->
|
<!-- CSS dependencies -->
|
||||||
<link href="https://fonts.googleapis.com/css?family=Fira+Sans" rel="stylesheet">
|
<link href="https://fonts.googleapis.com/css?family=Fira+Sans" rel="stylesheet">
|
||||||
<link rel='stylesheet' type='text/css' href='/css/font-loader.css'>
|
<link rel='stylesheet' type='text/css' href='/css/font-loader.css'>
|
||||||
<link rel='stylesheet' type='text/css' href='/css/global.css'>
|
<link rel='stylesheet' type='text/css' href='/css/global.css'>
|
||||||
<link rel='stylesheet' type='text/css' href='/css/pop-up.css'>
|
<link rel='stylesheet' type='text/css' href='/css/pop-up.css'>
|
||||||
<link rel='stylesheet' type='text/css' href='/css/layout.css'>
|
<link rel='stylesheet' type='text/css' href='/css/layout.css'>
|
||||||
<link rel='stylesheet' type='text/css' href='/css/menu.css'>
|
<link rel='stylesheet' type='text/css' href='/css/menu.css'>
|
||||||
<link rel='stylesheet' type='text/css' href='/css/header.css'>
|
<link rel='stylesheet' type='text/css' href='/css/header.css'>
|
||||||
<link rel='stylesheet' type='text/css' href='/css/container.css'>
|
<link rel='stylesheet' type='text/css' href='/css/container.css'>
|
||||||
<link rel='stylesheet' type='text/css' href='/css/container/svg.css'>
|
<link rel='stylesheet' type='text/css' href='/css/container/svg.css'>
|
||||||
|
|
||||||
<!-- JS dependencies -->
|
<!-- JS dependencies -->
|
||||||
<script type='text/javascript' src='/js/_SERVER.js'></script>
|
<script type='text/javascript' src='/js/_SERVER.js'></script>
|
||||||
|
|
||||||
</head>
|
</head>
|
||||||
<body class='loading'>
|
<body class='loading'>
|
||||||
|
@ -46,4 +47,23 @@
|
||||||
<!-- Main loop -->
|
<!-- Main loop -->
|
||||||
<script type='text/javascript' src='/js/bundle@home.js' onload="document.body.className=''"></script>
|
<script type='text/javascript' src='/js/bundle@home.js' onload="document.body.className=''"></script>
|
||||||
</body>
|
</body>
|
||||||
|
<?php }else{?>
|
||||||
|
|
||||||
|
<link rel='stylesheet' type='text/css' href='/css/layout.css'>
|
||||||
|
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div id="WRAPPER" class='login'>
|
||||||
|
|
||||||
|
|
||||||
|
<div id='LOGIN_REDIRECT'>
|
||||||
|
<div class='icon'></div>
|
||||||
|
<div class='title'><b>P</b><i>lateforme</i> <b>A</b><i>ssistée de</i> <b>T</b><i>raitement</i> <b>A</b><i>dministratif des</i> <b>T</b><i>aches d'</i><b>E</b><i>nseignement</i></div>
|
||||||
|
<a href="/api/v/1.0/professor/pdf/<?php echo $_SESSION['CAS']["id"]; ?>" class="downloadButton">Télécharger ma fiche</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
<?php } ?>
|
||||||
</html>
|
</html>
|
|
@ -281,5 +281,13 @@ body.body404{
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.downloadButton{
|
||||||
|
text-decoration: none;
|
||||||
|
color: #3f4a5e;
|
||||||
|
box-shadow: 0px 0px 1px 1px #7f8d9b;
|
||||||
|
background: whitesmoke;
|
||||||
|
padding: 10px;
|
||||||
|
border-radius: 2px;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue