mirror of
https://github.com/Lynnesbian/FediBooks/
synced 2024-11-01 06:08:59 +00:00
27 lines
698 B
HTML
27 lines
698 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>FediBooks</title>
|
|
{% include 'imports.html' %}
|
|
</head>
|
|
|
|
<body>
|
|
<div class="container centred">
|
|
<h1 class="thin centred">Stop learning from account</h1>
|
|
</div>
|
|
|
|
<div class="container centred">
|
|
<form method='POST'>
|
|
<div class="panel-icon large"></div>
|
|
<div class="container centred">
|
|
<p>Are you sure you want {{ bot }} to stop learning from {{ user }}?</p>
|
|
<a class="button btn-secondary" href="/"><i class="fas fa-times"></i> Cancel</a>
|
|
<button class="button btn-dangerous"><i class="fas fa-trash"></i> Stop learning</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
|
|
{% include 'footer.html' %}
|
|
</body>
|
|
</html>
|