Skip to content

Instantly share code, notes, and snippets.

@twyle
Created June 2, 2022 13:56
Show Gist options
  • Save twyle/27b77359e2c9e747a3e6dc8005acff1a to your computer and use it in GitHub Desktop.
Save twyle/27b77359e2c9e747a3e6dc8005acff1a to your computer and use it in GitHub Desktop.
<!-- templates/home.html -->
<!doctype html>
<html>
<head>
<title>Github OAuth</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css"> <!-- load bulma css -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"> <!-- load fontawesome -->
<style>
body { padding-top:70px; }
</style>
</head>
<body>
<div class="container">
<div class="jumbotron text-center text-primary">
<h1><span class="fa fa-github"></span> Github OAuth</h1>
<p>Authorize your app with:</p>
<a href="{{ url_for('login') }}" class="btn btn-danger"><span class="fa fa-github"></span> Github Login</a>
</div>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment