Skip to content

Commit

Permalink
added final confirmation template
Browse files Browse the repository at this point in the history
  • Loading branch information
ivancrneto committed May 26, 2024
1 parent 5847c37 commit 5001ebd
Showing 1 changed file with 50 additions and 0 deletions.
50 changes: 50 additions & 0 deletions users/templates/users/confirmed.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
<!DOCTYPE html>
{% load static %}
<html>
<meta name="viewport" content="width=device-width, initial-scale=1.0">


<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" rel="stylesheet">


<head>
<title>BaheaCal - Adicione Jogos do Seu Time Favorito</title>
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" rel="stylesheet">
<style>
body {
padding-top: 20px;
}
h1 {
text-align: center;
margin-bottom: 30px;
font-size: 2.5rem; /* Responsive font size */
color: #007bff; /* Bootstrap primary color */
}
</style>
</head>
<body>
<div class="container">
<h1>Calendário Conectado!</h1>
{% if user.is_authenticated %}
<p class="col text-center">Obrigado, {{ user.username }}!</p>
{% else %}
<p class="col text-center">Obrigado, visitante!</p>
{% endif %}

<p class="col text-center">Os eventos começarão a aparecer em breve.</p>

{% comment %}
<div class="row">
<div class="col text-center">
<a class="btn btn-primary" href="/user/settings/">Suas Configurações</a>
</div>
</div>
{% endcomment %}
</div>

<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"></script>

</body>
</html>

0 comments on commit 5001ebd

Please sign in to comment.