Cleaned markup, added styles, and aria roles for Refresh Content pages

This commit is contained in:
manolobevia 2011-11-14 19:51:13 +00:00
parent ff8c14a725
commit a54e24779d
2 changed files with 3 additions and 3 deletions

View file

@ -13,11 +13,11 @@
<form action="${actionUrl}" method="POST"> <form action="${actionUrl}" method="POST">
<p> <p>
<input type="submit" name="update" value="Update"> <input class="submit" type="submit" name="update" value="Update" role="button" />
Add the latest changes to the index. Add the latest changes to the index.
</p> </p>
<p> <p>
<input type="submit" name="rebuild" value="Rebuild"> <input class="submit" type="submit" name="rebuild" value="Rebuild" role="button" />
Start with an empty index and build it completely. Start with an empty index and build it completely.
</p> </p>
</form> </form>

View file

@ -2,7 +2,7 @@
<#if formAction?has_content> <#if formAction?has_content>
<form method="post" action="${formAction}"> <form method="post" action="${formAction}">
<input type="submit" value="Recompute Inferences" name="submit"/> <input class="submit" type="submit" value="Recompute Inferences" name="submit" role="input" />
</form> </form>
</#if> </#if>