fix/affichage-admin-upload #156
2 changed files with 24 additions and 4 deletions
17
public/css/admin.css
Normal file
17
public/css/admin.css
Normal file
|
@ -0,0 +1,17 @@
|
|||
.adminOptions {
|
||||
display: flex;
|
||||
flex-flow: row wrap;
|
||||
justify-content: space-around;
|
||||
|
||||
}
|
||||
|
||||
.adminOption {
|
||||
font-family: 'Poppins';
|
||||
font-size: 1rem;
|
||||
font-weight: 500;
|
||||
background-color: #FF563C;
|
||||
padding: 10px;
|
||||
color: #fff;
|
||||
border: none;
|
||||
cursor: pointer;
|
||||
}
|
|
@ -5,13 +5,16 @@
|
|||
<meta charset="utf-8">
|
||||
<title>AGECEM</title>
|
||||
{{ template "general-html" }}
|
||||
<link rel="stylesheet" href="/public/css/admin.css">
|
||||
</head>
|
||||
<body>
|
||||
{{ template "header-html" }}
|
||||
<h1 class="heading1">Admin</h1>
|
||||
<ul>
|
||||
<li><a href="/admin/documents/upload">Ajout de document</a></li>
|
||||
</ul>
|
||||
<div class="wrapper adminWrapper">
|
||||
<h1 class="heading1">Admin</h1>
|
||||
<div class="adminOptions">
|
||||
<button class="adminOption" onclick="location.href = '/admin/documents/upload'">Ajout de document</a>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
{{ end }}
|
||||
|
|
Loading…
Reference in a new issue