Browse Source

Remove inline styling, add class to link

Doing so negates the need inline styling, as Bootstrap has a `btn-link` class which works with grouped buttons.
Mike Francis 9 years ago
parent
commit
eae3689b35
1 changed files with 2 additions and 4 deletions
  1. 2 4
      resources/views/auth/login.blade.php

+ 2 - 4
resources/views/auth/login.blade.php

@@ -47,11 +47,9 @@
 
 						<div class="form-group">
 							<div class="col-md-6 col-md-offset-4">
-								<button type="submit" class="btn btn-primary" style="margin-right: 15px;">
-									Login
-								</button>
+								<button type="submit" class="btn btn-primary">Login</button>
 
-								<a href="/password/email">Forgot Your Password?</a>
+								<a class="btn btn-link" href="/password/email">Forgot Your Password?</a>
 							</div>
 						</div>
 					</form>