79 lines
2.0 KiB
Plaintext
79 lines
2.0 KiB
Plaintext
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<title>{{ appName }}</title>
|
||
|
<link rel="stylesheet" href="/assets/css/material-icons.css">
|
||
|
<link rel="stylesheet" href="/assets/css/shared.css">
|
||
|
<link rel="stylesheet" href="/assets/css/header.css">
|
||
|
|
||
|
<link rel="stylesheet" href="/assets/css/breadcrumbs.css">
|
||
|
<link rel="stylesheet" href="/assets/css/form.css">
|
||
|
|
||
|
<link rel="stylesheet" href="/assets/css/pages/add-category.css">
|
||
|
</head>
|
||
|
<body>
|
||
|
|
||
|
<header>
|
||
|
<div class="page-box header-main">
|
||
|
<div class="header-logo">
|
||
|
<img src="/assets/img/logo.svg">
|
||
|
</div>
|
||
|
{% if user is not null %}
|
||
|
<div class="username">
|
||
|
<span>{{ user.name }}</span>
|
||
|
<span class="material-icons-outlined">account_box</span>
|
||
|
</div>
|
||
|
{% endif %}
|
||
|
</div>
|
||
|
|
||
|
<div class="page-box header-menu">
|
||
|
<div>
|
||
|
<span class="margin-right-8 text-primary">Topics</span>
|
||
|
{% if userAccess.canManageUsers() %}
|
||
|
<a class="margin-right-8 text-gray" href="/users">Users</a>
|
||
|
{% endif %}
|
||
|
{% if user is null %}
|
||
|
<a class="text-gray" href="/login">Login</a>
|
||
|
{% else %}
|
||
|
<a class="text-gray" href="/logout">Logout</a>
|
||
|
{% endif %}
|
||
|
</div>
|
||
|
</div>
|
||
|
</header>
|
||
|
|
||
|
<main>
|
||
|
<div class="page-box">
|
||
|
<h1 class="title">Add category</h1>
|
||
|
|
||
|
<nav>
|
||
|
<ol class="breadcrumbs">
|
||
|
<li class="breadcrumbs-item">
|
||
|
<a href="/">All categories</a>
|
||
|
</li>
|
||
|
<li class="breadcrumbs-item active">New</li>
|
||
|
</ol>
|
||
|
</nav>
|
||
|
|
||
|
{% if error is not null %}
|
||
|
<div class="error margin-bottom-16" style="color: #000000;width: 100%;">
|
||
|
{{ error }}
|
||
|
</div>
|
||
|
{% endif %}
|
||
|
|
||
|
<form action="/add-category" method="post">
|
||
|
<div>
|
||
|
<input
|
||
|
class="form-input"
|
||
|
name="name"
|
||
|
placeholder="Name of the category"
|
||
|
{% if name is not null %} value="{{ name }}" {% endif %}
|
||
|
required
|
||
|
/>
|
||
|
</div>
|
||
|
<button class="form-button" type="submit">Add category</button>
|
||
|
</form>
|
||
|
</div>
|
||
|
</main>
|
||
|
</body>
|
||
|
</html>
|