From cdc61eb4ea5309769ad4db84d92594e4dc3dff67 Mon Sep 17 00:00:00 2001 From: Michael Date: Mon, 20 Mar 2017 16:45:17 -0400 Subject: Initial commit (azure deploy test) --- Project-Unite/Views/Admin/AddUserToRole.cshtml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 Project-Unite/Views/Admin/AddUserToRole.cshtml (limited to 'Project-Unite/Views/Admin/AddUserToRole.cshtml') diff --git a/Project-Unite/Views/Admin/AddUserToRole.cshtml b/Project-Unite/Views/Admin/AddUserToRole.cshtml new file mode 100644 index 0000000..386507c --- /dev/null +++ b/Project-Unite/Views/Admin/AddUserToRole.cshtml @@ -0,0 +1,24 @@ +@model Project_Unite.Models.AddUserToRoleViewModel + +@{ + ViewBag.Title = "Add user to role"; +} + +

Add user to role

+ +@using (Html.BeginForm()) +{ + + + + + + + + + + +
@Html.DisplayNameFor(model => model.Username)@Html.TextBoxFor(model => model.Username)
@Html.DisplayNameFor(model => model.RoleId)@Html.TextBoxFor(model => model.RoleId)
+ +} + -- cgit v1.2.3