index OK db
This commit is contained in:
@@ -1,26 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Calendar settings</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<h2>Your Teams:</h2>
|
||||
<ul>
|
||||
{% for team in userTeams %}
|
||||
<li><a>{{ getTeamName(team.idTeam) }}</a> <a href="/del/{{ team.idTeam }}">Delete</a></li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
|
||||
<h2>Total Teams:</h2>
|
||||
<ul>
|
||||
{% for team in otherTeams %}
|
||||
<li><a>{{ getTeamName(team) }}</a> <a href="/add/{{ team }}">Add</a></li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
|
||||
<a href="{{ url_for('download_ical') }}">Download iCal Calendar</a>
|
||||
</body>
|
||||
</html>
|
||||
@@ -1,30 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
|
||||
<title>Login with Google</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="container">
|
||||
<div class="row justify-content-center align-items-center" style="height:100vh;">
|
||||
<div class="col-md-4">
|
||||
<div class="card">
|
||||
<div class="card-body text-center">
|
||||
<img src="static/logo/google.png" width="150px">
|
||||
<h5 class="card-title">Login with Google</h5>
|
||||
<p class="card-text">Click the button below to connect with Google</p>
|
||||
<a href="/login/google" class="btn btn-danger btn-lg">Login with Google</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.10.2/dist/umd/popper.min.js"></script>
|
||||
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user