|
@@ -0,0 +1,37 @@
|
|
|
+<?php
|
|
|
+
|
|
|
+$view
|
|
|
+
|
|
|
+->import('inc/head')
|
|
|
+
|
|
|
+->set('title', '找回密码')
|
|
|
+->set('name', 'password')
|
|
|
+->fetch('header span', '找回密码')
|
|
|
+
|
|
|
+->fetch('.back@href', 'javascript:history.go(-1)')
|
|
|
+
|
|
|
+->fetch(array('input@id', 0), 'mobile')
|
|
|
+->fetch(array('input@name', 0), 'mobile')
|
|
|
+->fetch(array('input@dever-error', 0), '请填写手机号')
|
|
|
+
|
|
|
+->fetch(array('input@id', 1), 'mcode')
|
|
|
+->fetch(array('input@name', 1), 'mcode')
|
|
|
+->fetch(array('input@dever-error', 1), '请填写收集验证码')
|
|
|
+
|
|
|
+->fetch(array('input@id', 2), 'password')
|
|
|
+->fetch(array('input@name', 2), 'password')
|
|
|
+->fetch(array('input@dever-match', 2), '(?=.*[a-zA-Z0-9])(?=.*[a-zA-Z0-9])(?=.*[a-zA-Z0-9]).{6,18}')
|
|
|
+->fetch(array('input@dever-error', 2), '密码长度为6~18位')
|
|
|
+
|
|
|
+->fetch('.nol@id', 'mcode_button')
|
|
|
+->fetch('.nol@dever-send', '<{Dever::load("passport/reg.getUrl", "passport/reg.getMcode", array("sid" => Dever::id()))}>')
|
|
|
+
|
|
|
+->fetch('.button@class', 'button')
|
|
|
+->fetch('.button@type', 'button')
|
|
|
+->fetch('.button@id', 'forget')
|
|
|
+
|
|
|
+->append('header', '<input type="hidden" name="refer" id="refer" value="<{Dever::input("refer")}>">')
|
|
|
+
|
|
|
+->import('inc/foot')
|
|
|
+
|
|
|
+->display();
|