From 9f238cc47fd5b9ec546b37986371e73d6ed3c626 Mon Sep 17 00:00:00 2001 From: Michael Date: Sat, 25 Mar 2017 15:59:50 -0400 Subject: Avatar system :smiley: --- Project-Unite/Views/Manage/UploadAvatar.cshtml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 Project-Unite/Views/Manage/UploadAvatar.cshtml (limited to 'Project-Unite/Views/Manage/UploadAvatar.cshtml') 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"; +} + +

Upload an avatar

+ +

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.

+ +@using (Html.BeginForm()) +{ + @Html.AntiForgeryToken() + @Html.ValidationSummary() +

File to upload: @Html.TextBoxFor(Model=>Model.Image, new { @class = "form-control", type = "file" })

+ +} \ No newline at end of file -- cgit v1.2.3