61 lines
No EOL
3 KiB
Cheetah
61 lines
No EOL
3 KiB
Cheetah
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.8.0/css/bulma.min.css"
|
|
integrity="sha256-D9M5yrVDqFlla7nlELDaYZIpXfFWDytQtiV+TaH6F1I=" crossorigin="anonymous" />
|
|
<link rel="stylesheet" href="{{ static "css/style.css" }}">
|
|
<title>Log In</title>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="hero is-success is-fullheight auth-background">
|
|
<div class="hero-body">
|
|
<div class="container">
|
|
<div class="columns">
|
|
<div
|
|
class="column is-one-third-desktop is-offset-one-third-desktop is-half-tablet is-offset-one-quarter-tablet">
|
|
<div class="content box">
|
|
<h2 class="has-text-centered is-size-3">Create Account</h2>
|
|
<form class="form" method="POST" action="{{ url "/register" }}">
|
|
<div class="field is-horizontal">
|
|
<div class="field-label is-normal">
|
|
<label for="" class="label">email</label>
|
|
</div>
|
|
<div class="field-body">
|
|
<div class="field">
|
|
<div class="control"><input type="text" name="email" id="" class="input">
|
|
</div>
|
|
<p class="help">The invitation link will be sent to this address</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<input type="hidden" name="client_id" value="">
|
|
<input type="hidden" name="redirect_uri" value="">
|
|
<input type="hidden" name="scope" value="">
|
|
<input type="hidden" name="state" value="">
|
|
<input type="hidden" name="response_type" value="">
|
|
<input type="hidden" name="duration" value="">
|
|
<input type="hidden" name="csrf_token" value="">
|
|
<div class="field is-grouped is-grouped-right">
|
|
<p class="control">
|
|
<button class="button is-medium is-fullwidth is-success" value="authorize"
|
|
type="submit">
|
|
Request invitation
|
|
</button>
|
|
</p>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
|
|
</html> |