mirror of
https://e.coding.net/circlecloud/McAccount.git
synced 2024-11-22 01:48:55 +00:00
1a664b41c9
Signed-off-by: 502647092 <jtb1@163.com>
40 lines
1.0 KiB
PHP
40 lines
1.0 KiB
PHP
<?php
|
|
class index extends AmysqlController {
|
|
// 默认首页
|
|
function IndexAction() {
|
|
$this->title = 'Minecraft 用户中心'; // 直接赋值模板
|
|
$this->_view ( 'message' ); // 载入index模板
|
|
}
|
|
function login() {
|
|
$this->title = "Minecraft 用户登陆";
|
|
$this->_view ( 'login' );
|
|
}
|
|
function register() {
|
|
$this->title = "Minecraft 帐号注册";
|
|
$this->_view ( "register" );
|
|
}
|
|
function pass() {
|
|
$this->title = "Minecraft 修改密码";
|
|
$this->_view ( "password" );
|
|
}
|
|
function mail() {
|
|
$this->title = "Minecraft 邮箱验证";
|
|
$this->_View ( "mail/mailstatus" );
|
|
}
|
|
function forge() {
|
|
$this->title = "Minecraft 密码找回";
|
|
$this->_View ( "forge" );
|
|
}
|
|
function serverlist() {
|
|
$this->title = "Minecraft 服务器列表";
|
|
$this->_View ( "servers" );
|
|
}
|
|
function news() {
|
|
$this->title = "Minecraft 服务器列表";
|
|
$this->_View ( "news" );
|
|
}
|
|
function pics() {
|
|
$this->title = "Minecraft 服务器列表";
|
|
$this->_View ( "pics" );
|
|
}
|
|
} |