controls.twig

来自「博客系统源码 博客系统源码 博客系统源码」· TWIG 代码 · 共 31 行

TWIG
31
字号
{% 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 + =
减小字号Ctrl + -
显示快捷键?