Change submit input to button element

Adrian Simmons created

Signed-off-by: Adrian Simmons <adrinux@perlucida.co.uk>

Change summary

ws/static/login.html.tmpl          | 2 +-
ws/static/select-release.html.tmpl | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)

Detailed changes

ws/static/login.html.tmpl 🔗

@@ -14,7 +14,7 @@
                     <label for="password">Password</label>
                     <input type="password" id="password" name="password">
                 </div>
-                <input class="button" type="submit" formaction="/login" value="Login">
+                <button class="button" type="submit" formaction="/login">Login</button>
             </form>
         </div>
 {{- template "footer" .Version -}}

ws/static/select-release.html.tmpl 🔗

@@ -37,7 +37,7 @@
             <input type="hidden" name="name" value="{{ .Name }}">
             <input type="hidden" name="forge" value="{{ .Forge }}">
             <input type="hidden" name="id" value="{{ .ID }}">
-            <input class="button" type="submit" formaction="/new" value="Track releases">
+            <button class="button" type="submit" formaction="/new">Track releases</button>
         </form>
         </div>
 {{- end }}