diff options
| author | Syndamia <kamen.d.mladenov@protonmail.com> | 2021-05-08 18:47:21 +0300 |
|---|---|---|
| committer | Syndamia <kamen.d.mladenov@protonmail.com> | 2021-05-08 18:47:21 +0300 |
| commit | c2e6edbb89b3c5bd0855074b8bcfebeb67e4e1ac (patch) | |
| tree | 85f7179c0c990ef106eef10c9720631bf5b9fd61 | |
| parent | ead0edec370483e5e80d42cc49c67f13e28c13b1 (diff) | |
| download | it-kariera-exam-template-c2e6edbb89b3c5bd0855074b8bcfebeb67e4e1ac.tar it-kariera-exam-template-c2e6edbb89b3c5bd0855074b8bcfebeb67e4e1ac.tar.gz it-kariera-exam-template-c2e6edbb89b3c5bd0855074b8bcfebeb67e4e1ac.zip | |
Minor style changes
| -rw-r--r-- | ExamTemplate/Web/Views/Account/Profile.cshtml | 2 | ||||
| -rw-r--r-- | ExamTemplate/Web/wwwroot/css/styles.css | 4 |
2 files changed, 6 insertions, 0 deletions
diff --git a/ExamTemplate/Web/Views/Account/Profile.cshtml b/ExamTemplate/Web/Views/Account/Profile.cshtml index 6decb79..322cb85 100644 --- a/ExamTemplate/Web/Views/Account/Profile.cshtml +++ b/ExamTemplate/Web/Views/Account/Profile.cshtml @@ -19,6 +19,8 @@ { @if(UserManager.GetUserName(User) == Model.Username) { + <br> + <form asp-controller="Account" asp-action="Edit" method="get"> <input type="submit" value="Edit Profile"> </form> diff --git a/ExamTemplate/Web/wwwroot/css/styles.css b/ExamTemplate/Web/wwwroot/css/styles.css index a4efd0c..e7fc7b3 100644 --- a/ExamTemplate/Web/wwwroot/css/styles.css +++ b/ExamTemplate/Web/wwwroot/css/styles.css @@ -127,6 +127,10 @@ input[type="submit"] { background-color: black; } +input[type="submit"]:hover { + cursor: pointer; +} + .form-error { font-size: 0.8em; color: red; |
