mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-10-15 19:54:57 +08:00
A little button cleanup
--HG-- branch : dev
This commit is contained in:
@@ -9,6 +9,6 @@
|
||||
<input id="Url" class="textMedium" name="Url" type="text" value="@Model.Url"/>
|
||||
</fieldset>
|
||||
<fieldset>
|
||||
<input type="submit" class="button primaryAction" value="@T("Add Feed")" />
|
||||
<button class="primaryAction" type="submit">@T("Add Feed")</button>
|
||||
</fieldset>
|
||||
}
|
@@ -26,5 +26,7 @@
|
||||
@Html.DropDownListFor(m => m.FeedUrl, new[]{new SelectListItem{Text=T("Download").ToString(),Value="Download"}}.Concat( Model.Sources.Select(x => new SelectListItem { Text = T("Push to {0}", x.FeedUrl).ToString(), Value = x.FeedUrl })))
|
||||
@Html.ValidationMessageFor(m=>m.FeedUrl)
|
||||
</fieldset>
|
||||
<input type="submit" value="Harvest" />
|
||||
<fieldset>
|
||||
<button class="primaryAction" type="submit">@T("Harvest")</button>
|
||||
</fieldset>
|
||||
}
|
||||
|
Reference in New Issue
Block a user