Last active
May 18, 2022 16:51
-
-
Save twyle/61de9863aca0c46c8bea42cf844d930b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- 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>Name</strong>: {{ userData.name }}<br> | |
<strong>Username</strong>: {{ userData.login }}<br> | |
<strong>Company</strong>: {{ userData.company }}<br> | |
<strong>Bio</strong>: {{ userData.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