mirror of
https://github.com/openwrt/luci.git
synced 2025-02-23 10:06:19 +00:00
* HTML Cleanup: Meta tags. * Converted charset to shorthand. * Removed meta tags with `Content-Script-Type` attribute. (Invalid in HTML5 spec.) * HTML Cleanup: CSS tags. * Removed `type` attribute with CSS files from link tags. (HTML5 spec recommends omitting it.) * Removed `type` attribute from style tags. (Deprecated in HTML5 spec.) https://html.spec.whatwg.org/#attr-link-type https://developer.mozilla.org/en-US/docs/Web/HTML/Element/style * HTML Cleanup: Convert from XHTML to HTML5 * Removed XML declaration. * Removed XML namespace. * Changed doctype to HTML5. * HTML Cleanup: CDATA tags. * CDATA sections should not be used within HTML they are considered as comments and not displayed. https://developer.mozilla.org/en-US/docs/Web/API/CDATASection * HTML Cleanup: Script tags. * Removed `language` attribute from script tags. (No longer valid in HTML5) * Removed `type` attribute with JavaScript MIME type from script tags. (HTML5 spec recommends omitting it.) https://html.spec.whatwg.org/multipage/scripting.html#attr-script-type https://mimesniff.spec.whatwg.org/#javascript-mime-type Signed-off-by: Mustafa Can Elmacı <mustafacan@elmaci.net>
42 lines
1.3 KiB
HTML
42 lines
1.3 KiB
HTML
<%
|
|
local display_back = (redirect and not flow.hidebackbtn)
|
|
local display_skip = (flow.skip)
|
|
local display_apply = (not autoapply and not flow.hideapplybtn)
|
|
local display_save = (not flow.hidesavebtn)
|
|
local display_reset = (not flow.hideresetbtn)
|
|
|
|
if pageaction and
|
|
(display_back or display_skip or display_apply or display_save or display_reset)
|
|
then
|
|
%><div class="cbi-page-actions"><%
|
|
|
|
if display_back then
|
|
%><input class="btn cbi-button cbi-button-link" type="button" value="<%:Back to Overview%>" onclick="location.href='<%=pcdata(redirect)%>'" /> <%
|
|
end
|
|
|
|
if display_skip then
|
|
%><input class="btn cbi-button cbi-button-skip" type="button" value="<%:Skip%>" onclick="cbi_submit(this, 'cbi.skip')" /> <%
|
|
end
|
|
|
|
if display_apply then
|
|
%><input class="btn cbi-button cbi-button-apply" type="button" value="<%:Save & Apply%>" onclick="cbi_submit(this, 'cbi.apply')"<%=ifattr(not writable, "disabled")%> /> <%
|
|
end
|
|
|
|
if display_save then
|
|
%><input class="btn cbi-button cbi-button-save" type="submit" value="<%:Save%>"<%=ifattr(not writable, "disabled")%> /> <%
|
|
end
|
|
|
|
if display_reset then
|
|
%><input class="btn cbi-button cbi-button-reset" type="button" value="<%:Reset%>" onclick="location.href='<%=REQUEST_URI%>'"<%=ifattr(not writable, "disabled")%> /> <%
|
|
end
|
|
|
|
%></div><%
|
|
end
|
|
%>
|
|
|
|
</form>
|
|
|
|
<script>cbi_init();</script>
|
|
|
|
<%+footer%>
|