@itrocks/signup
Version:
Handles user sign-up for @itrocks/user, with account creation and secure onboarding flow
42 lines (39 loc) • 1.2 kB
HTML
<html lang="en">
<head>
<link href="../../action-bar/action.css" rel="stylesheet">
<link href="../../edit/css/edit.css" rel="stylesheet">
<link href="../../output/css/output.css" rel="stylesheet">
<link href="../../ux-core/css/app.css" rel="stylesheet">
<link href="../../ux-core/css/article.css" rel="stylesheet">
<link href="../css/action.css" rel="stylesheet">
<meta charset="utf-8">
<title>Sign up</title>
</head>
<body>
<main>
<!--BEGIN-->
<!--#main-->
<form
action="app://(@route)/signup"
data-action="signup" data-class="{%name}" data-route="{@route}"
method="post" target="#notifications:prepend"
>
<header>
<h2>Sign Up</h2>
<ul class="general actions">
<li class="close"><a href="app://(@route)/login" target="main">Cancel</a></li>
<li class="signup"><input type="submit" value="Sign up"></li>
</ul>
</header>
<ul class="object properties">
<!--%properties.login--><li data-property="{name}">{edit}</li><!--end-->
<!--%properties.email--><li data-property="{name}">{edit}</li><!--end-->
<!--%properties.password--><li data-property="{name}">{edit}</li><!--end-->
</ul>
</form>
<!--#end-->
<!--END-->
</main>
</body>
</html>