speakmore-2.0/templates/custom_css.html
Olai bc9fcda6aa Updated online detection and fixed bugs
Updated online detection and fixed bugs
2024-06-25 23:27:34 +02:00

26 lines
1 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Custom CSS</title>
{% include 'head.html' %}
</head>
<body class="login-body">
<div class="login-div !h-[460px]">
<form class="login-form" id="custom-css-form" method="POST">
<h2 class="login-h2">Custom CSS</h2>
<div class="login-input-div-first">
<label for="custom_css" class="login-label">Enter your custom CSS:</label>
<textarea class="login-input" id="custom_css" name="custom_css" rows="10">{{ custom_css }}</textarea>
</div>
<div class="login-input-div-first !flex-row">
<a class="no-account no-account-button" href="{{ url_for('dashboard') }}"> Go Back</a>
</div>
<div class="login-input-div-first items-end">
<button class="ms-button-signin" type="submit" class="btn btn-primary">Save CSS</button>
</div>
</form>
<div id="message" class="mt-3"></div>
</div>
</body>
</html>