| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- @()(implicit webJarsUtil: org.webjars.play.WebJarsUtil, request: RequestHeader)
- <!DOCTYPE html>
- <html>
- <head>
- <title>Open Sauce - Setup</title>
- <link rel="shortcut icon" type="image/png"
- href="@routes.Assets.versioned("images/favicon.png")">
- </head>
- <body>
- <h1>Open Source Setup</h1>
- <p>
- Before the website is officially ready, you need to create the first, admin
- account.
- </p>
- <p>
- WARNING: Once you create the account, you will need it to create/promote new
- admins.
- </p>
- <div id="content" class="section container">
- <form class="text-right" action="/initialize" method="POST">
- <div class="input-group mb-3">
- <div class="input-group mb-3">
- <input id="email" type="text" class="form-control" name="email"
- placeholder="Email" required>
- </div>
- <div class="input-group">
- <input id="password" type="password" class="form-control" name="password"
- placeholder="Password" required>
- </div>
- </div>
- <div class="input-group mb-3">
- <input id="fname" type="text" class="form-control" name="fname"
- placeholder="First Name">
- <input id="lname" type="text" class="form-control" name="lname"
- placeholder="Last Name">
- </div>
- <div class="btn-group btn-group-justified">
- <input type="submit" class="btn btn-success" value="Finish" />
- </div>
- <!-- Creates a CSRF token, required by Play for non-GET requests. Token is
- embedded in a hidden input tag. -->
- @helper.CSRF.formField
- </form>
- </div>
- </body>
- </html>
|