How can I do to add a button to a form used to start process?
Confluence User - 29 Apr, 2024
Hi community.
I´m needing add a button at the foot of a Form. I´m using an HTML field to show the button but the button must be aligned with the submit field. Please see the example below.
I´m open to hearing suggestions
And this is the Code
<div id="footer" style="text-align: right;">
<button type="button" name="button" id="cancelButton">Cancelar</button>
</div>
<script type="text/javascript">
$('#cancelButton').click(function(){
history.go(-1);
});
</script>
<style>
button {
color: #ffffff;
background-color: #5789e5;
font-size: 14px;
border: 1px solid #2d63c8;
border-radius: 5px;
padding: 8px 15px;
cursor: pointer;
}
button:hover {
color: #2d63c8;
background-color: #ffffff;
}
</style>
forms;html;process
