mirror of
https://github.com/lazuscripts/users.git
synced 2024-11-17 03:14:22 +00:00
42e6672175
tl;dr: I am resetting the history in this repo to this point because I accidentally was adding history from OTHER repos into this one due to a bug in git subtree or a misunderstanding on my part
27 lines
854 B
Plaintext
27 lines
854 B
Plaintext
import Widget from require "lapis.html"
|
|
|
|
import autoload from require "locator"
|
|
import settings from autoload "utility"
|
|
|
|
class extends Widget
|
|
content: =>
|
|
form {
|
|
action: @url_for "user_new", nil, redirect: @params.redirect
|
|
method: "POST"
|
|
enctype: "multipart/form-data"
|
|
}, ->
|
|
p "Username: "
|
|
input type: "text", name: "name", autocomplete: "username"
|
|
p "Email: "
|
|
input type: "email", name: "email"
|
|
p "Password: "
|
|
input type: "password", name: "password"
|
|
br!
|
|
if settings["users.require-recaptcha"]
|
|
div class: "g-recaptcha", "data-sitekey": settings["users.recaptcha-sitekey"]
|
|
input type: "hidden", name: "csrf_token", value: @csrf_token
|
|
input type: "submit"
|
|
|
|
if settings["users.require-recaptcha"]
|
|
script src: "https://www.google.com/recaptcha/api.js"
|