Skip to content

Instantly share code, notes, and snippets.

@twyle
Created June 2, 2022 14:09
Show Gist options
  • Save twyle/c7d01c1ba7c4a60384d3b8df603515cc to your computer and use it in GitHub Desktop.
Save twyle/c7d01c1ba7c4a60384d3b8df603515cc to your computer and use it in GitHub Desktop.
<!-- templates/dashboard.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">
<h1 class="text-primary text-center"><span class="fa fa-github"></span> Github Information</h1>
<div class="row">
<div class="col-sm-6">
<div class="well">
<p>
<strong>Twitter</strong>: {{ user_data.twitter_username }}<br>
<strong>Username</strong>: {{ user_data.login }}<br>
<strong>Location</strong>: {{ user_data.location }}<br>
<strong>Bio</strong>: {{ user_data.bio }}
</p>
</div>
</div>
</div>
</div>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment