diff options
author | Camil Staps | 2016-09-06 00:57:34 +0200 |
---|---|---|
committer | Camil Staps | 2016-09-06 00:58:12 +0200 |
commit | d0b26dd01e13dfd3ef80eb7a03a576a4894daf0c (patch) | |
tree | 593cb3b8f8f4b9bc7669301b15ecd3fe80c06f3a /resources/views/user/create.blade.php | |
parent | Top users, more condense contribution page (diff) |
Top contributors on train page
Diffstat (limited to 'resources/views/user/create.blade.php')
-rw-r--r-- | resources/views/user/create.blade.php | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/resources/views/user/create.blade.php b/resources/views/user/create.blade.php index 818a20a..b823451 100644 --- a/resources/views/user/create.blade.php +++ b/resources/views/user/create.blade.php @@ -9,12 +9,14 @@ <form method="post"> <div class="form-group"> - <label for="create-user-email">Email address</label> - <input type="email" class="form-control" id="create-user-email" placeholder="Email" name="email" value="{{{ $form['email'] }}}"/> + <label for="create-user-email">Email address (private)</label> + <input type="email" class="form-control" id="create-user-email" placeholder="Email" name="email" value="{{{ $form['email'] }}}" aria-describedby="create-user-email-help"/> + <span id="create-user-email-help" class="help-block">You will not receive any automated email from us, but we like to have some way of contacting you available. Your email address will not be shared with third parties, and will not be visible to users of the website.</span> </div> <div class="form-group"> <label for="create-user-name">Username</label> - <input type="text" class="form-control" id="create-user-name" placeholder="Username" name="name" value="{{{ $form['name'] }}}"/> + <input type="text" class="form-control" id="create-user-name" placeholder="Username" name="name" value="{{{ $form['name'] }}}" aria-describedby="create-user-name-help"/> + <span id="create-user-name-help" class="help-block">Your name as shown on the site.</span> </div> <div class="form-group"> <label for="create-user-pw1">Password</label> |