register_file.html 422 Bytes
{% extends 'base.html' %}

{% block header %}
  <h1>{% block title %}注册数据{% endblock %}</h1>
{% endblock %}

{% block content %}
  <form method="post">

    <label for="alias">Alias</label>
    <input name="alias" id="alias" required>

    <label for="resourcePath">ResourcePath</label>
    <input name="resourcePath" id="resourcePath" required>

    <input type="submit" value="注册">

  </form>
{% endblock %}R