2015-05-11 17:32:24 +00:00
< div class = "signup-form-element"
quay-show="Features.USER_CREATION & & Config.AUTHENTICATION_TYPE == 'Database'">
2014-09-11 19:45:41 +00:00
< form class = "form-signup" name = "signupForm" ng-submit = "register()" ng-show = "!awaitingConfirmation && !registering" >
2014-04-07 23:04:26 +00:00
< input type = "text" class = "form-control" placeholder = "Create a username" name = "username" ng-model = "newUser.username" autofocus required ng-pattern = "/^[a-z0-9_]{4,30}$/" >
2013-12-11 21:50:10 +00:00
< input type = "email" class = "form-control" placeholder = "Email address" ng-model = "newUser.email" required >
2014-04-07 23:04:26 +00:00
< input type = "password" class = "form-control" placeholder = "Create a password" ng-model = "newUser.password" required
ng-pattern="/^.{8,}$/">
2013-12-11 21:50:10 +00:00
< input type = "password" class = "form-control" placeholder = "Verify your password" ng-model = "newUser.repeatPassword"
2014-04-07 23:04:26 +00:00
match="newUser.password" required
ng-pattern="/^.{8,}$/">
2013-12-11 21:50:10 +00:00
< div class = "form-group signin-buttons" >
2014-04-07 22:55:39 +00:00
< button id = "signupButton"
class="btn btn-primary btn-block landing-signup-button" ng-disabled="signupForm.$invalid" type="submit"
2014-04-06 04:50:30 +00:00
analytics-on analytics-event="register">
< span quay-show = "Features.BILLING" > Sign Up for Free!< / span >
< span quay-show = "!Features.BILLING" > Sign Up< / span >
< / button >
< span class = "social-alternate" quay-require = "['GITHUB_LOGIN']" >
2013-12-11 21:50:10 +00:00
< i class = "fa fa-circle" > < / i >
< span class = "inner-text" > OR< / span >
< / span >
2014-08-11 19:47:44 +00:00
< div class = "external-login-button" provider = "github" > < / div >
< div class = "external-login-button" provider = "google" > < / div >
2013-12-11 21:50:10 +00:00
< / div >
< / form >
2015-07-14 11:00:29 +00:00
< div class = "cor-loader" ng-show = "registering" > < / div >
< div class = "co-alert co-alert-info"
ng-show="awaitingConfirmation & & hideRegisteredMessage != 'true'">
Thank you for registering! We have sent you an activation email.
You must < b > verify your email address< / b > before you can continue.
2013-12-11 21:50:10 +00:00
< / div >
< / div >