MVC+EasyUI+三层新闻网站建立 后台登录界面的搭建(二)
程序员文章站
2023-09-03 23:51:15
新闻网站建立,后台登录界面的搭建
首先我们在controllers里面新添加一个控制器就叫logincontroller,右键点击controllers添加控制器就可以了...
新闻网站建立,后台登录界面的搭建
首先我们在controllers里面新添加一个控制器就叫logincontroller,右键点击controllers添加控制器就可以了(注意后面一定是controller结尾,这是一种约定)
其次:右键点击index建立index视图。(不选择使用母版页)
现在我们就可以在index视图中设计我们的登录页面了。
这里需要我们引入几个css样式和js文件
简单的进行登录界面的布局
<html> <head> <meta name="viewport" content="width=device-width" /> <title>登录</title> <script src="~/scripts/jquery-1.8.2.js"></script> <script src="~/content/easyui/jquery.easyui.min.js"></script> <script src="~/content/easyui/easyui-lang-zh_cn.js"></script> <link href="~/content/easyui/themes/default/easyui.css" rel="external nofollow" rel="stylesheet" /> <link href="~/content/easyui/themes/icon.css" rel="external nofollow" rel="stylesheet" /> <script type="text/javascript"> $(function () { initwin(); //初始化登录窗体 }); function initwin() { $("#win").window({ title: "登录", width: 400, height: 270, collapsible: false, minimizable: false, maximizable: false, closable: false, modal: true, resizable: false, }); } </script> </head> <body> <div id="win"class="easyui-window"> <div> <div style="height:20px"></div> <table> <tr> <td style="width:20px"></td> <td>用户名:</td> <td><input type="text"class="easyui-textbox" id="txtname" name="txtname"/></td> <td><span id="spanname" style="color:red"></span></td> </tr> <tr style="height:10px"></tr> <tr> <td style="width:20px"></td> <td>密 码:</td> <td><input type="password/"class="easyui-textbox"id="txtpwd" name="txtpwd"></td> <td><span id="spanpwd" style="color:red"></span></td> </tr> <tr style="height:10px"></tr> <tr> <td style="width:20px"></td> <td>验证码:</td> <td><input type="text"class="easyui-textbox" id="txtvcode" name="txtvcode"/></td> <td><span id="spanvcode"style="color:red"></span></td> </tr> <tr style="height:10px"></tr> <tr> <td style="width:20px"></td> <td><img id="image" src="" style="float: left; height: 24px;" /></td> <td><a href="javascript:void(0)" rel="external nofollow" rel="external nofollow" id="changevcode">看不清,换一张</a></td> </tr> </table> </div> <div style="height:10px"></div> <div data-options="region:'south',border:false" style="text-align:center;padding:5px 0 0;"> <a class="easyui-linkbutton" data-options="iconcls:'icon-ok'" href="javascript:void(0)" rel="external nofollow" rel="external nofollow" id="btnok" style="width:80px">登录</a> </div> </div> </body> </html>
运行的结果图:
这里验证码的图片没有显示出来,这是没有关系的,在下一节中就讲怎么把验证码显示出来。
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。