修改邮箱页面布局

新建cms/cms_resetemail.html

{% extends 'cms/cms_base.html' %}

{% block title %}修改邮箱-CMS管理系统{% endblock %}

{% block page_title %}个人中心>>>修改邮箱{% endblock %}

{% block head %}
    <style>
        .form-container{
            width: 300px;
        }
    </style>
{% endblock %}


{% block main_content %}
    <form class="form-container">
      <div class="form-group">
        <div class="input-group">
          <input type="email" class="form-control" placeholder="新的邮箱" name="email">
          <div class="input-group-addon" style="cursor: pointer" id="get_captcha">获取验证码</div>
        </div>
      </div>

       <div class="form-group">
        <div class="input-group">
          <input type="text" class="form-control" placeholder="填写验证码" name="captcha">
        </div>
      </div>

      <div class="form-group">
        <div class="input-group">
          <button type="submit" class="btn btn-primary" id="submit">提交修改</button>
        </div>
      </div>

    </form>

{% endblock %}
cms_resetemail.html

相关文章:

  • 2022-03-03
  • 2021-10-24
  • 2021-11-26
  • 2022-02-11
  • 2021-10-14
  • 2021-11-01
  • 2021-06-01
  • 2021-07-24
猜你喜欢
  • 2022-12-23
  • 2021-10-02
  • 2021-09-04
  • 2022-01-08
  • 2021-11-20
  • 2021-05-29
  • 2021-05-28
相关资源
相似解决方案