Launch your service with a Start now button.
<!-- Start: @buttons--default -->
<input class="button " type="submit" value="This is a default button">
<!-- End: @buttons--default -->
<!-- Start: @buttons--start -->
<a class="button button-start" href="" role="button">This is a start button</a>
<!-- End: @buttons--start -->
<!-- Start: @buttons--disabled -->
<input class="button " type="submit" value="This is a disabled button" disabled="disabled">
<!-- End: @buttons--disabled -->
{% if type == "link" %}
<a class="button {{ modifier }}{% if disabled %} disabled{% endif%}" href="{{ url }}" role="button">{{ text }}</a>
{% else %}
<input class="button {{ modifier }}" type="submit" value="{{ text }}"{% if disabled %} disabled="disabled"{% endif%}>
{% endif %}
{
"@buttons--default": {
"text": "This is a default button"
},
"@buttons--start": {
"type": "link",
"modifier": "button-start",
"text": "This is a start button"
},
"@buttons--disabled": {
"disabled": true,
"text": "This is a disabled button"
}
}