forked from Imago-Veritatis/Imago-Veritatis
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathadmin.html
More file actions
56 lines (46 loc) · 2.19 KB
/
Copy pathadmin.html
File metadata and controls
56 lines (46 loc) · 2.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>RTL World - Panneau Administrateur</title>
<link rel="stylesheet" href="admin.css">
<link rel="icon" type="image/png" href="logo.png">
</head>
<body>
<header class="main-header">
<img src="logo.png" alt="Logo du journal" class="logo">
<span class="page-title">Panneau Administrateur</span>
<a href="https://discord.gg/dttgPJzTmK" class="header-button">Discord Groupe RTL</a>
<a href="https://discord.gg/VnjaETmxD2" class="header-button">Discord Parlement du Listenbourg</a>
<a href="login.html" class="header-button">Connexion administrateur</a>
<a href="." class="header-button">Accueil</a>
</header>
<form id="articleForm">
<h1>Ajouter un article</h1>
<label for="title">Titre :</label>
<input type="text" id="title" required>
<label for="author">Auteur :</label>
<input type="text" id="author" required>
<label for="date">Date (format JJ/MM/AAAA) :</label>
<input type="text" id="date" required>
<label for="content">Contenu (Markdown) :</label>
<textarea id="content" rows="5" required></textarea>
<label for="imageUpload">Image :</label>
<input type="file" id="imageUpload" accept="image/*">
<label for="memeUpload">Meme :</label>
<input type="file" id="memeUpload" accept="image/*">
<label for="category">Catégorie :</label>
<select id="category">
<option value="Le Journal">Le Journal</option>
<option value="Flash Infos">Flash Infos</option>
<option value="Documentaires">Documentaires</option>
<option value="L'éditorial de RTL World">L'éditorial de RTL World</option>
<option value="Les Interviews">Les Interviews</option>
<option value="Rediffusion RTL">Rediffusion RTL</option>
</select>
<button type="submit">Publier</button>
</form>
<script type="module" src="admin.js"></script>
</body>
</html>