认证页面在用户 名密码输入框输入文字时看不到文字,因为字体是白色修改方法如下
1\打开网页目录C:\apache-tomcat-7.0.59\webapps\ROOT\dist\js\site.js
2\找到输入框的代码段(如下)
//帐号密码认证
$("#accountLogin").click(function() {
$("h2").replaceWith('');
$(".row").replaceWith('<div class="col-sm-4 col-md-offset-4"><h3>请输入帐号和密码</h3>\n' + '<form id="login_form" role="form">\n' + '<div class="form-group"><input type="text" class="form-control" id="InputAccount" name="usr" placeholder="帐号"></div>\n' + '<div class="form-group"><input type="password" class="form-control" id="InputPassword" name="pwd" placeholder="密码"></div>\n' + '<button id="btnAcpassword" type="button" class="btn btn-lg btn-info btn-block">登录</button><button id="goback" type="button" class="btn btn-lg btn-default btn-block">返回</button></form></div>\n');
3\在 <input type="text" class="form-control" id="InputAccount" name="usr" placeholder="帐号"> 增加style="color:#000000"
既为
<input style="color:#000000" type="text" class="form-control" id="InputAccount" name="usr" placeholder="帐号">
<input style="color:#000000" type="password" class="form-control" id="InputPassword" name="pwd" placeholder="密码">
输入框的内容就能显示了
|