use button tags and hide the button content after click

This commit is contained in:
Isaac Connor 2018-02-27 11:49:13 -08:00
parent c50627fd88
commit 83fad681b3
1 changed files with 2 additions and 2 deletions

View File

@ -1011,8 +1011,8 @@ if ( $monitor->Type() == 'Local' ) {
</tbody> </tbody>
</table> </table>
<div id="contentButtons"> <div id="contentButtons">
<input type="submit" value="<?php echo translate('Save') ?>"<?php if ( !canEdit( 'Monitors' ) ) { ?> disabled="disabled"<?php } ?>/> <button type="submit" value="Save" onclick="$j('#contentButtons').hide();"<?php echo canEdit('Monitors') ? '' : ' disabled="disabled"' ?>><?php echo translate('Save') ?></button>
<input type="button" value="<?php echo translate('Cancel') ?>" onclick="closeWindow()"/> <button onclick="closeWindow()"><?php echo translate('Cancel') ?></button>
</div> </div>
</form> </form>
</div> </div>