Blame view

client/views/public/signup.html 719 Bytes
d1f4dbea8   Ryan Glover   Additional README...
1
  <template name="signup">
5f6f6fbb0   Ryan Glover   Clean up spacing....
2
3
4
5
6
7
8
9
10
11
12
13
14
15
    <form id="application-signup" class="signup">
      <div class="form-group">
        <label for="emailAddress">Email Address</label>
        <input type="email" name="emailAddress" class="form-control" placeholder="Email Address">
      </div> <!-- end .form-group -->
      <div class="form-group">
        <label for="password">Password</label>
        <input type="password" name="password" class="form-control" placeholder="Password">
      </div> <!-- end .form-group -->
      <div class="form-group">
        <input type="submit" class="btn btn-success" value="Sign Up">
      </div> <!-- end .form-group -->
    </form>
    <p>Already have an account? <a href="{{pathFor 'login'}}">Log In</a>.</p>
d1f4dbea8   Ryan Glover   Additional README...
16
  </template>