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.
This commit is contained in:
Mike Francis 2015-02-04 15:10:44 +00:00
parent da60de8973
commit eae3689b35
1 changed files with 2 additions and 4 deletions

View File

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