fix styling

This commit is contained in:
Michael 2017-05-17 20:06:25 -04:00
parent 40c424f787
commit 812c0d7f16

View file

@ -77,13 +77,13 @@
<h4>Interests</h4> <h4>Interests</h4>
<p>What are you interested in?</p> <p>What are you interested in?</p>
@Html.TextAreaFor(Model => Model.Interests) @Html.TextAreaFor(Model => Model.Interests, new { @class = "form-control" })
<h4>Hobbies</h4> <h4>Hobbies</h4>
<p>What do you like to do?</p> <p>What do you like to do?</p>
@Html.TextAreaFor(Model => Model.Hobbies) @Html.TextAreaFor(Model => Model.Hobbies, new { @class = "form-control" })
</div> </div>
@ -120,6 +120,7 @@
<a href="@Url.Action("SetPassword", "Manage")" class="btn btn-default"><span class="glyphicon glyphicon-arrow-right"></span> Change password</a> <a href="@Url.Action("SetPassword", "Manage")" class="btn btn-default"><span class="glyphicon glyphicon-arrow-right"></span> Change password</a>
</div> </div>
<hr/>
<input type="submit" value="Update" class="btn btn-primary" /> <input type="submit" value="Update" class="btn btn-primary" />
</div> </div>
</div> </div>