From 21c700f9e2a9230946df6f3c9a48225274ee9b15 Mon Sep 17 00:00:00 2001 From: Tommy Parnell Date: Fri, 29 Jan 2016 12:40:14 -0500 Subject: [PATCH] gray out button on click --- src/stars.tparnell.io/Views/Manage/Index.cshtml | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/src/stars.tparnell.io/Views/Manage/Index.cshtml b/src/stars.tparnell.io/Views/Manage/Index.cshtml index 595a6c1..662a543 100644 --- a/src/stars.tparnell.io/Views/Manage/Index.cshtml +++ b/src/stars.tparnell.io/Views/Manage/Index.cshtml @@ -2,11 +2,11 @@ @if(Model.Any()) { - @using(Html.BeginForm("AddStars", "Manage", FormMethod.Get)) + @using(Html.BeginForm("AddStars", "Manage", FormMethod.Get, new { id = "formpost" })) {
-

Star your Repos:

+

Star your Repos:

} @@ -17,4 +17,12 @@ else

Congrats! You have stared all your repos

+} +@section scripts{ + } \ No newline at end of file