Archived
1
0
Fork 0
This repository has been archived on 2024-02-17. You can view files and clone it, but cannot push or open issues or pull requests.
SOD/views/mixin.pug

9 lines
372 B
Text
Raw Normal View History

2020-08-20 22:46:46 +02:00
mixin submit(value)
div.recaptcha.recaptcha-cb
2020-09-27 20:43:11 +02:00
button.btn.waves-effect.waves-light(type="submit" name="action")=value
i.material-icons.right send
2020-09-13 21:17:13 +02:00
mixin list(id, list, name, value="", autocomplete="on", required=false)
2020-09-13 21:17:13 +02:00
span.list_arrow
input(id=id type="list" list=list name=name value=value autocomplete=autocomplete required=required)