summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael <[email protected]>2017-05-17 20:06:25 -0400
committerMichael <[email protected]>2017-05-17 20:06:25 -0400
commit812c0d7f1615822d52c489ec48a21e63518ec88b (patch)
tree67056fddf7e482d173325546d835c1288c0a7cdb
parent40c424f787351b5e2e89aabedb5e67bfeece7008 (diff)
downloadproject-unite-812c0d7f1615822d52c489ec48a21e63518ec88b.tar.gz
project-unite-812c0d7f1615822d52c489ec48a21e63518ec88b.tar.bz2
project-unite-812c0d7f1615822d52c489ec48a21e63518ec88b.zip
fix styling
-rw-r--r--Project-Unite/Views/Manage/Index.cshtml5
1 files changed, 3 insertions, 2 deletions
diff --git a/Project-Unite/Views/Manage/Index.cshtml b/Project-Unite/Views/Manage/Index.cshtml
index 086b97c..3cf0b02 100644
--- a/Project-Unite/Views/Manage/Index.cshtml
+++ b/Project-Unite/Views/Manage/Index.cshtml
@@ -77,13 +77,13 @@
<h4>Interests</h4>
<p>What are you interested in?</p>
- @Html.TextAreaFor(Model => Model.Interests)
+ @Html.TextAreaFor(Model => Model.Interests, new { @class = "form-control" })
<h4>Hobbies</h4>
<p>What do you like to do?</p>
- @Html.TextAreaFor(Model => Model.Hobbies)
+ @Html.TextAreaFor(Model => Model.Hobbies, new { @class = "form-control" })
</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>
</div>
+ <hr/>
<input type="submit" value="Update" class="btn btn-primary" />
</div>
</div>