50 lines
1.3 KiB
HTML
50 lines
1.3 KiB
HTML
<%#
|
|
Copyright 2008 Steven Barth <steven@midlink.org>
|
|
Copyright 2008-2009 Jo-Philipp Wich <xm@subsignal.org>
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
$Id$
|
|
|
|
-%>
|
|
<h2><%:Upgrade firmware%></h2>
|
|
|
|
<form method="post" enctype="multipart/form-data" action="<%|url(request)%>">
|
|
<p>
|
|
<%:You can manually upgrade your firmware here.%>
|
|
</p>
|
|
<% if bad_image then %>
|
|
<p class="error"><%:The provided firmware image is not valid for this device.%></p>
|
|
<% end %>
|
|
<div class="gluon-section-node">
|
|
<div class="gluon-value">
|
|
<label class="gluon-value-title">
|
|
<%:Firmware image%>
|
|
</label>
|
|
<div class="gluon-value-field">
|
|
<input type="file" name="image">
|
|
</div>
|
|
</div>
|
|
|
|
<div class="gluon-value gluon-value-last">
|
|
<label class="gluon-value-title">
|
|
<%:Keep settings%>
|
|
</label>
|
|
|
|
<div class="gluon-value-field">
|
|
<input id="keepcfg" type="checkbox" name="keepcfg" value="1" checked="checked">
|
|
<label for="keepcfg"></label>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="gluon-page-actions">
|
|
<input type="hidden" name="step" value="2">
|
|
<input class="gluon-button gluon-button-submit" type="submit" value="<%:Upload image%>">
|
|
</div>
|
|
</form>
|