This course will be retired on July 14, 2025.
Heads up! To view this whole video, sign in with your Courses account or enroll in your free 7-day trial. Sign In Enroll
Well done!
You have completed ASP.NET MVC Forms!
You have completed ASP.NET MVC Forms!
Let’s turn our attention to the “Delete” view.
Follow Along
To follow along commiting your changes to this course, you'll need to fork the aspnet-fitness-frog repo. Then you can clone, commit, and push your changes to your fork like this:
git clone <your-fork>
cd aspnet-fitness-frog
git checkout tags/v5.4 -b updating-our-delete-view
Code
Here’s the HTML markup that our designer provided for our “Delete” view.
<div class="alert alert-danger">
Are you sure you want to delete the following entry?
</div>
<div class="row">
<div class="col-lg-6">
<div class="row">
<div class="col-xs-4 col-sm-3">
<label>Date</label>
</div>
<div class="col-xs-8 col-sm-9">
1/1/2016
</div>
</div>
<div class="row">
<div class="col-xs-4 col-sm-3">
<label>Activity</label>
</div>
<div class="col-xs-8 col-sm-9">
Basketball
</div>
</div>
<div class="row">
<div class="col-xs-4 col-sm-3">
<label>Duration</label>
</div>
<div class="col-xs-8 col-sm-9">
23.4
</div>
</div>
<div class="row">
<div class="col-xs-4 col-sm-3">
<label>Intensity</label>
</div>
<div class="col-xs-8 col-sm-9">
Medium
</div>
</div>
<form method="post">
<div class="pad-top">
<button type="submit" class="btn btn-danger btn-lg margin-right">
<span class="glyphicon glyphicon-trash"></span> Delete
</button>
<a href="/" class="btn btn-warning btn-lg">
<span class="glyphicon glyphicon-remove"></span> Cancel
</a>
</div>
</form>
</div>
</div>
Additional Learning
For more information about creating responsive layouts, see this Treehouse course.
For more information about Bootstrap’s grid system, see this page on Bootstrap’s documentation website.
Related Discussions
Have questions about this video? Start a discussion with the community and Treehouse staff.
Sign upRelated Discussions
Have questions about this video? Start a discussion with the community and Treehouse staff.
Sign up
You need to sign up for Treehouse in order to download course files.
Sign upYou need to sign up for Treehouse in order to set up Workspace
Sign up