Skip to content

Instantly share code, notes, and snippets.

@anabellaspinelli
Last active September 24, 2018 11:41
Show Gist options
  • Save anabellaspinelli/c439c340cf43ec1e56a1b298734fe31e to your computer and use it in GitHub Desktop.
Save anabellaspinelli/c439c340cf43ec1e56a1b298734fe31e to your computer and use it in GitHub Desktop.
Typeform OAuth tutorial
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Themeform</title>
<style>
body {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
margin: 0;
color: #262627;
background-color: #f1ece3;
}
main,
header {
max-width: 960px;
margin: 30px auto;
padding: 0 10px;
color: #333;
}
.btn {
color: #fff;
font-size: 15px;
background: #e2543d;
display: inline-block;
border: none;
padding: 3px 12px;
min-width: 120px;
padding: 10px;
margin: 10px 0;
text-decoration: none;
}
.btn:hover {
cursor: pointer;
background-color: #eb7152;
}
</style>
</head>
<body>
<header>
<h1>Welcome to Themeform!</h1>
</header>
<main>
<p>Click the button below to log in</p>
<a class="btn" href="/auth/typeform">Login with Typeform!</a>
</main>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment