diff options
author | 2021-03-18 23:27:43 +0100 | |
---|---|---|
committer | 2021-03-18 23:27:43 +0100 | |
commit | 1b118841211da90381dd950cafa13ead78b7f589 (patch) | |
tree | fe89341206aa367b022ac778a932537e7f09763f /web | |
parent | almost there (diff) | |
download | gotosocial-1b118841211da90381dd950cafa13ead78b7f589.tar.xz |
auth flow working for code
Diffstat (limited to 'web')
-rw-r--r-- | web/template/authorize.tmpl | 33 | ||||
-rw-r--r-- | web/template/sign-in.tmpl | 28 |
2 files changed, 61 insertions, 0 deletions
diff --git a/web/template/authorize.tmpl b/web/template/authorize.tmpl new file mode 100644 index 000000000..0043e21ba --- /dev/null +++ b/web/template/authorize.tmpl @@ -0,0 +1,33 @@ +<!DOCTYPE html> +<html lang="en"> + <head> + <meta charset="UTF-8" /> + <title>Auth</title> + <link + rel="stylesheet" + href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" + /> + <script src="//code.jquery.com/jquery-2.2.4.min.js"></script> + <script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script> + </head> + + <body> + <div class="container"> + <div class="jumbotron"> + <form action="/oauth/authorize" method="POST"> + <h1>Authorize</h1> + <p>The client would like to perform actions on your behalf.</p> + <p> + <button + type="submit" + class="btn btn-primary btn-lg" + style="width:200px;" + > + Allow + </button> + </p> + </form> + </div> + </div> + </body> +</html> diff --git a/web/template/sign-in.tmpl b/web/template/sign-in.tmpl new file mode 100644 index 000000000..b7aa7c702 --- /dev/null +++ b/web/template/sign-in.tmpl @@ -0,0 +1,28 @@ +<!DOCTYPE html> +<html lang="en"> +<head> + <meta charset="UTF-8"> + <title>Login</title> + <link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css"> + <script src="//code.jquery.com/jquery-2.2.4.min.js"></script> + <script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script> +</head> + +<body> + <div class="container"> + <h1>Login</h1> + <form action="/auth/sign_in" method="POST"> + <div class="form-group"> + <label for="email">Email</label> + <input type="text" class="form-control" name="username" required placeholder="Please enter your email address"> + </div> + <div class="form-group"> + <label for="password">Password</label> + <input type="password" class="form-control" name="password" placeholder="Please enter your password"> + </div> + <button type="submit" class="btn btn-success">Login</button> + </form> + </div> +</body> + +</html> |