feat: Add Lawn Care Tips section and improve Dashboard layout
This commit is contained in:
		
							parent
							
								
									1f50fedb80
								
							
						
					
					
						commit
						985c944e16
					
				
					 17 changed files with 689 additions and 18 deletions
				
			
		
							
								
								
									
										41
									
								
								Views/LawnCareTip/Edit.cshtml
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										41
									
								
								Views/LawnCareTip/Edit.cshtml
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,41 @@ | |||
| @model turf_tasker.Models.LawnCareTip | ||||
| 
 | ||||
| @{ | ||||
|     ViewData["Title"] = "Edit"; | ||||
| } | ||||
| 
 | ||||
| <h1>Edit</h1> | ||||
| 
 | ||||
| <h4>LawnCareTip</h4> | ||||
| <hr /> | ||||
| <div class="row"> | ||||
|     <div class="col-md-4"> | ||||
|         <form asp-action="Edit"> | ||||
|             <div asp-validation-summary="ModelOnly" class="text-danger"></div> | ||||
|             <input type="hidden" asp-for="Id" /> | ||||
|             <div class="form-group"> | ||||
|                 <label asp-for="Title" class="control-label"></label> | ||||
|                 <input asp-for="Title" class="form-control" /> | ||||
|                 <span asp-validation-for="Title" class="text-danger"></span> | ||||
|             </div> | ||||
|             <div class="form-group"> | ||||
|                 <label asp-for="Category" class="control-label"></label> | ||||
|                 <select asp-for="Category" class="form-control"></select> | ||||
|                 <span asp-validation-for="Category" class="text-danger"></span> | ||||
|             </div> | ||||
|             <div class="form-group"> | ||||
|                 <label asp-for="Content" class="control-label"></label> | ||||
|                 <textarea asp-for="Content" class="form-control"></textarea> | ||||
|                 <span asp-validation-for="Content" class="text-danger"></span> | ||||
|             </div> | ||||
|             <div class="form-group"> | ||||
|                 <input type="submit" value="Save" class="btn btn-primary" /> | ||||
|             </div> | ||||
|         </form> | ||||
|     </div> | ||||
| </div> | ||||
| 
 | ||||
| <div> | ||||
|     <a asp-action="Index">Back to List</a> | ||||
| </div> | ||||
| 
 | ||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Blake Ridgway
						Blake Ridgway