12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- SELECT 'text' AS component
- , '<style>
- .form-fieldset {
- border: none;
- }
- .form-fieldset .row {
- align-items: center;
- justify-content: center;
- }
- input[name=hash] {
- text-align: center;
- }
- </style>' AS html
- ;
- SELECT 'button' AS component
- , 'center' AS justify
- , 'lg' AS size
- ;
- SELECT 'New '||$title AS title
- , 2 AS width
- , 'gray-500' AS color
- , '/'||$tool AS link
- ;
- SELECT 'form' AS component
- , $tool||'-open' AS id
- , '/'||$tool||'/' AS action
- , '' AS validate
- , 'get' AS method
- ;
- SELECT 'C0DE' AS placeholder
- , 'input' AS type
- , '' AS label
- , 'hash' AS name
- , 2 AS width
- , TRUE AS autofocus
- ;
- SELECT 'button' AS component
- , 'center' AS justify
- , 'lg' AS size
- , 2 AS width
- ;
- SELECT 'Submit' AS title
- , 1 AS width
- , $tabler_color AS color
- , $tool||'-open' AS form
- ;
|