2014-07-17 15:34:40 +04:00
|
|
|
<section class="setup-box js-signup-box fade-in">
|
|
|
|
<div class="vertical">
|
|
|
|
<form id="signup" class="setup-form" method="post" novalidate="novalidate">
|
|
|
|
<header>
|
|
|
|
<h1>Welcome to Ghost</h1>
|
|
|
|
<h2>Create your account to start publishing</h2>
|
|
|
|
</header>
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="email">Email Address</label>
|
2014-07-25 06:49:57 +04:00
|
|
|
{{input type="email" name="email" autocorrect="off" value=email }}
|
2014-07-17 15:34:40 +04:00
|
|
|
<p>Used for important notifications</p>
|
|
|
|
</div>
|
2014-07-25 06:49:57 +04:00
|
|
|
<div class="form-group">
|
|
|
|
<label for="name">Full Name</label>
|
2014-07-25 22:47:50 +04:00
|
|
|
{{input type="text" name="name" autofocus="autofocus" autocorrect="off" value=name }}
|
2014-07-25 06:49:57 +04:00
|
|
|
<p>The name that you will sign your posts with</p>
|
|
|
|
</div>
|
2014-07-17 15:34:40 +04:00
|
|
|
<div class="form-group">
|
|
|
|
<label for="password">Password</label>
|
2014-07-25 22:47:50 +04:00
|
|
|
{{input type="password" name="password" autofocus="autofocus" autocorrect="off" value=password }}
|
2014-07-17 15:34:40 +04:00
|
|
|
<p>Must be at least 8 characters</p>
|
|
|
|
</div>
|
|
|
|
<footer>
|
2014-07-22 07:27:28 +04:00
|
|
|
<button type="submit" class="button-add large" {{action "signup"}} {{bind-attr disabled=submitting}}>Create Account</button>
|
2014-07-17 15:34:40 +04:00
|
|
|
</footer>
|
|
|
|
</form>
|
|
|
|
</div>
|
2014-07-25 06:49:57 +04:00
|
|
|
</section>
|