📄 controls.twig
字号:
{% extends "layouts/default.twig" %}{% block content %} <h2>${ "Controls" | translate }</h2> <form action="{% url "controls" %}" method="post"> <p> <label for="full_name">${ "Full Name" | translate }</label> <input type="text" name="full_name" value="${ visitor.full_name | escape }" id="full_name" tabindex="1" /> </p> <p> <label for="email">${ "E-Mail" | translate }</label> <input type="text" name="email" value="${ visitor.email | escape }" id="email" tabindex="1" /> </p> <p> <label for="website">${ "Website" | translate }</label> <input type="text" name="website" value="${ visitor.website | escape }" id="website" tabindex="1" /> </p> <p> <label for="new_password1">${ "New Password?" | translate }</label> <input type="password" name="new_password1" value="" id="new_password1" /> </p> <p> <label for="new_password2">${ "Confirm" | translate }</label> <input type="password" name="new_password2" value="" id="new_password2" /> </p>${ trigger.call("user_controls") } <p><button name="submit" type="submit" id="submit">${ "Update" | translate }</button></p> </form>{% endblock %}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -