diff options
| author | Michael <[email protected]> | 2017-03-25 15:59:50 -0400 |
|---|---|---|
| committer | Michael <[email protected]> | 2017-03-25 15:59:50 -0400 |
| commit | 9f238cc47fd5b9ec546b37986371e73d6ed3c626 (patch) | |
| tree | e1d9175d58999ca99d5308c2b42749bab5806581 /Project-Unite/Views/Manage/UploadAvatar.cshtml | |
| parent | 84285d2ffb84f470ab7b09708075427ae31541f0 (diff) | |
| download | project-unite-9f238cc47fd5b9ec546b37986371e73d6ed3c626.tar.gz project-unite-9f238cc47fd5b9ec546b37986371e73d6ed3c626.tar.bz2 project-unite-9f238cc47fd5b9ec546b37986371e73d6ed3c626.zip | |
Avatar system :smiley:
Diffstat (limited to 'Project-Unite/Views/Manage/UploadAvatar.cshtml')
| -rw-r--r-- | Project-Unite/Views/Manage/UploadAvatar.cshtml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Project-Unite/Views/Manage/UploadAvatar.cshtml b/Project-Unite/Views/Manage/UploadAvatar.cshtml new file mode 100644 index 0000000..81e40c4 --- /dev/null +++ b/Project-Unite/Views/Manage/UploadAvatar.cshtml @@ -0,0 +1,16 @@ +@model Project_Unite.Models.UploadImageViewModel +@{ + ViewBag.Title = "Upload avatar"; +} + +<h2>Upload an avatar</h2> + +<p>Let's put a face on your profile, shall we? Upload an image from your local computer and we'll display it as your avatar.</p> + +@using (Html.BeginForm()) +{ + @Html.AntiForgeryToken() + @Html.ValidationSummary() + <p><strong>File to upload: </strong>@Html.TextBoxFor(Model=>Model.Image, new { @class = "form-control", type = "file" })</p> + <input type="submit" class="form-control" value="Upload!" /> +}
\ No newline at end of file |
