189 lines
8.0 KiB
HTML
189 lines
8.0 KiB
HTML
<!doctype html>
|
|
<html lang="fr">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<link rel="stylesheet" href="/static/style.css" />
|
|
<title>Créer une UE - EduGrade</title>
|
|
</head>
|
|
<body>
|
|
<div class="dashboard-wrapper">
|
|
<nav class="navbar">
|
|
<div class="nav-brand">
|
|
<svg
|
|
width="35"
|
|
height="35"
|
|
viewBox="0 0 60 60"
|
|
fill="none"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
>
|
|
<rect
|
|
width="60"
|
|
height="60"
|
|
rx="15"
|
|
fill="white"
|
|
fill-opacity="0.2"
|
|
/>
|
|
<path
|
|
d="M30 15L40 25L30 35L20 25L30 15Z"
|
|
fill="white"
|
|
/>
|
|
<path
|
|
d="M30 25L40 35L30 45L20 35L30 25Z"
|
|
fill="white"
|
|
fill-opacity="0.7"
|
|
/>
|
|
</svg>
|
|
<span>EduGrade</span>
|
|
</div>
|
|
<div class="nav-links">
|
|
<a href="/prof/matieres" class="nav-link">
|
|
<svg
|
|
width="18"
|
|
height="18"
|
|
viewBox="0 0 24 24"
|
|
fill="currentColor"
|
|
>
|
|
<path
|
|
d="M20 11H7.83l5.59-5.59L12 4l-8 8 8 8 1.41-1.41L7.83 13H20v-2z"
|
|
/>
|
|
</svg>
|
|
Retour aux matières
|
|
</a>
|
|
<a href="/prof/dashboard" class="nav-link">Dashboard</a>
|
|
<a href="/logout" class="btn-logout">
|
|
<svg
|
|
width="18"
|
|
height="18"
|
|
viewBox="0 0 20 20"
|
|
fill="currentColor"
|
|
>
|
|
<path
|
|
d="M17 7l-1.41 1.41L18.17 11H8v2h10.17l-2.58 2.58L17 17l5-5zM4 5h8V3H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h8v-2H4V5z"
|
|
/>
|
|
</svg>
|
|
Déconnexion
|
|
</a>
|
|
</div>
|
|
</nav>
|
|
|
|
<div class="content-wrapper">
|
|
<div class="page-header">
|
|
<h1>
|
|
<svg
|
|
width="30"
|
|
height="30"
|
|
viewBox="0 0 24 24"
|
|
fill="currentColor"
|
|
>
|
|
<path
|
|
d="M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM9 17H7v-7h2v7zm4 0h-2V7h2v10zm4 0h-2v-4h2v4z"
|
|
/>
|
|
</svg>
|
|
Créer une UE
|
|
</h1>
|
|
<p class="page-subtitle">
|
|
Ajoutez une nouvelle Unité d'Enseignement
|
|
</p>
|
|
</div>
|
|
|
|
{% with messages = get_flashed_messages(with_categories=true) %}
|
|
{% if messages %} {% for category, message in messages %}
|
|
<div class="message {{ category }}">{{ message }}</div>
|
|
{% endfor %} {% endif %} {% endwith %}
|
|
|
|
<div class="form-card">
|
|
<form
|
|
action="/prof/ue/creer"
|
|
method="post"
|
|
class="create-form"
|
|
>
|
|
<div class="form-group">
|
|
<label for="code">
|
|
<svg
|
|
width="18"
|
|
height="18"
|
|
viewBox="0 0 24 24"
|
|
fill="currentColor"
|
|
>
|
|
<path
|
|
d="M9.4 16.6L4.8 12l4.6-4.6L8 6l-6 6 6 6 1.4-1.4zm5.2 0l4.6-4.6-4.6-4.6L16 6l6 6-6 6-1.4-1.4z"
|
|
/>
|
|
</svg>
|
|
Code UE
|
|
</label>
|
|
<input
|
|
type="text"
|
|
id="code"
|
|
name="code"
|
|
placeholder="Ex: UE1"
|
|
required
|
|
/>
|
|
<small class="form-hint"
|
|
>Code unique de l'unité d'enseignement</small
|
|
>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label for="nom">
|
|
<svg
|
|
width="18"
|
|
height="18"
|
|
viewBox="0 0 24 24"
|
|
fill="currentColor"
|
|
>
|
|
<path
|
|
d="M21 5c-1.11-.35-2.33-.5-3.5-.5-1.95 0-4.05.4-5.5 1.5-1.45-1.1-3.55-1.5-5.5-1.5S2.45 4.9 1 6v14.65c0 .25.25.5.5.5.1 0 .15-.05.25-.05C3.1 20.45 5.05 20 6.5 20c1.95 0 4.05.4 5.5 1.5 1.35-.85 3.8-1.5 5.5-1.5 1.65 0 3.35.3 4.75 1.05.1.05.15.05.25.05.25 0 .5-.25.5-.5V6c-.6-.45-1.25-.75-2-1z"
|
|
/>
|
|
</svg>
|
|
Nom de l'UE
|
|
</label>
|
|
<input
|
|
type="text"
|
|
id="nom"
|
|
name="nom"
|
|
placeholder="Ex: Informatique"
|
|
required
|
|
/>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label for="description">
|
|
<svg
|
|
width="18"
|
|
height="18"
|
|
viewBox="0 0 24 24"
|
|
fill="currentColor"
|
|
>
|
|
<path
|
|
d="M14 2H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zm2 16H8v-2h8v2zm0-4H8v-2h8v2zm-3-5V3.5L18.5 9H13z"
|
|
/>
|
|
</svg>
|
|
Description
|
|
</label>
|
|
<textarea
|
|
id="description"
|
|
name="description"
|
|
rows="4"
|
|
placeholder="Description de l'unité d'enseignement (optionnel)"
|
|
></textarea>
|
|
</div>
|
|
|
|
<button type="submit" class="btn btn-primary btn-large">
|
|
<svg
|
|
width="20"
|
|
height="20"
|
|
viewBox="0 0 24 24"
|
|
fill="currentColor"
|
|
>
|
|
<path d="M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z" />
|
|
</svg>
|
|
Créer l'UE
|
|
</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|