Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions views/homepage.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -46,13 +46,13 @@
</div>
<button type="submit" class="btn btn-success">
<span ng-show="!loginForm.loading">Sign in</span>
<span ng-show="loginForm.loading" class="fa fa-spinner"></span>
<span ng-show="loginForm.loading" class="overlord-loading-spinner fa fa-spinner"></span>
<span ng-show="loginForm.loading">Signing in...</span>
</button>
<input type="hidden" name="_csrf" value="<%= _csrf %>" />
</form>
</nav>
</div>
</div>
</nav>
</div>

<div class=" col-md-8 col-md-offset-2">
Expand All @@ -69,7 +69,7 @@
<footer class="footer pull-right">
<div>
<a href="http://sailsjs.com/">sailsjs.org</a>
<div>tutorial by irl nathan, with a bunch of help from cody, gabe, heather, mike, racheal, scott and zoli</div>
<div>tutorial by irl nathan, with a bunch of help from cody, gabe, heather, mike, rachael, scott and zoli</div>
</div>
</footer>
</div>
Expand Down
12 changes: 6 additions & 6 deletions views/signup.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -55,13 +55,13 @@
<!-- S U B M I T -->
<button type="submit" class="btn btn-success">
<span ng-show="!loginForm.loading">Sign in</span>
<span ng-show="loginForm.loading" class="fa fa-spinner"></span>
<span ng-show="loginForm.loading">Signing up...</span>
<span ng-show="loginForm.loading" class="overlord-loading-spinner fa fa-spinner"></span>
<span ng-show="loginForm.loading">Signing in...</span>
</button>
<input type="hidden" name="_csrf" value="<%= _csrf %>" />
</form>
</nav>
</div>
</div>
</nav>
</div>

<!-- SIGNUP FORM -->
Expand Down Expand Up @@ -122,7 +122,7 @@
ng-class="{'has-error':signup.password.$invalid &&
signup.password.$dirty}">
<label>Choose a password</label>
<!-- Added the compareTo directive that compares the passowrds -->
<!-- Added the compareTo directive that compares the passwords -->
<input type="password" class="form-control" placeholder="at least 6 characters" name="password" ng-model="signupForm.password" id="password" required ng-minlength="6" compare-to="signupForm.confirmPassword" >
<span class="help-block has-error" ng-if="signup.password.$dirty">
<span ng-show="signup.password.$error.required">Password is required.</span>
Expand Down Expand Up @@ -161,7 +161,7 @@
<footer class="footer pull-right">
<div>
<a href="http://sailsjs.com/">sailsjs.org</a>
<div>tutorial by irl nathan, with a bunch of help from cody, gabe, heather, mike, racheal, scott and zoli</div>
<div>tutorial by irl nathan, with a bunch of help from cody, gabe, heather, mike, rachael, scott and zoli</div>
</div>
</footer>
</div>
Expand Down