Advertisement
Guest User

RemoveStudent.cshtml

a guest
Jun 22nd, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.88 KB | None | 0 0
  1. @model BAA_WEB.Models.LoginViewModel
  2. @{
  3. ViewBag.Title = "RemoveStudent";
  4. Layout = "~/Views/Shared/_UserLayout.cshtml";
  5. }
  6.  
  7. <div id="deleteProfileContainer">
  8.  
  9. <h2><span style="color:lightgray;font-weight:200;">YOU ARE ABOUT TO DELETE</span> @Model.user.UserName's<span style="color:lightgray; font-weight:200;"> PROFILE</span></h2>
  10. <p class="btn-danger attentionTXT">ATTENTION! Changes are permanent</p>
  11. <div style="margin-top: 80px;">
  12. @using (Html.BeginForm())
  13. {
  14. @Html.AntiForgeryToken()
  15.  
  16. <div class="form-actions no-color">
  17. <input type="submit" value="YES, I AM SURE" class="btn btn-danger studentDeleteConfirmation" />
  18.  
  19.  
  20. <a class="btn btn-success studentDeleteConfirmation" href="@Url.Action("Students", "User")">RETURN TO LIST</a>
  21.  
  22.  
  23. </div>
  24. }
  25. </div>
  26. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement