導航:首頁 > 萬維百科 > 網頁設計登陸界面用戶名密碼

網頁設計登陸界面用戶名密碼

發布時間:2021-02-28 01:57:55

1、網頁製作如何添加用戶登錄(用戶名登錄密碼那種)

樣式
html {
background-color: #E9EEF0
}
.wrapper {
margin: 140px auto;
width: 884px;
}
.loginBox {
background-color: #FEFEFE;
border: 1px solid #BfD6E1;
border-radius: 5px;
color: #444;
font: 14px 'Microsoft YaHei','微軟雅黑';
margin: 0 auto;
width: 388px
}
.loginBox .loginBoxCenter {
border-bottom: 1px solid #DDE0E8;
padding: 24px;
}
.loginBox .loginBoxCenter p {
margin-bottom: 10px
}
.loginBox .loginBoxButtons {
background-color: #F0F4F6;
border-top: 1px solid #FFF;
border-bottom-left-radius: 5px;
border-bottom-right-radius: 5px;
line-height: 28px;
overflow: hidden;
padding: 20px 24px;
vertical-align: center;
}
.loginBox .loginInput {
border: 1px solid #D2D9dC;
border-radius: 2px;
color: #444;
font: 12px 'Microsoft YaHei','微軟雅黑';
padding: 8px 14px;
margin-bottom: 8px;
width: 310px;
}
.loginBox .loginInput:FOCUS {
border: 1px solid #B7D4EA;
box-shadow: 0 0 8px #B7D4EA;
}
.loginBox .loginBtn {
background-image: -moz-linear-gradient(to bottom, #B5DEF2, #85CFEE);
border: 1px solid #98CCE7;
border-radius: 20px;
box-shadow:inset rgba(255,255,255,0.6) 0 1px 1px, rgba(0,0,0,0.1) 0 1px 1px;
color: #FFF;
cursor: pointer;
float: right;
font: bold 13px Arial;
padding: 5px 14px;
}
.loginBox .loginBtn:HOVER {
background-image: -moz-linear-gradient(to top, #B5DEF2, #85CFEE);
}
.loginBox a.forgetLink {
color: #ABABAB;
cursor: pointer;
float: right;
font: 11px/20px Arial;
text-decoration: none;
vertical-align: middle;
}
.loginBox a.forgetLink:HOVER {
text-decoration: underline;
}
.loginBox input#remember {
vertical-align: middle;
}
.loginBox label[for="remember"] {
font: 11px Arial;
}
HTML代碼:

<div class="wrapper">
<form action="/chaos/EvilEmail.html" method="post" >
<div class="loginBox">
<div class="loginBoxCenter">
<p><label for="username">電子郵箱:</label></p>
<p><input type="email" id="email" name="email" class="loginInput" autofocus="autofocus" required="required" autocomplete="off" placeholder="請輸入電子郵箱" value="" /></p>
<p><label for="password">密碼:</label><a class="forgetLink" href="#">忘記密碼?</a></p>
<p><input type="password" id="password" name="password" class="loginInput" required="required" placeholder="請輸入密碼" value="" /></p>
</div>
<div class="loginBoxButtons">
<input id="remember" type="checkbox" name="remember" />
<label for="remember">記住登錄狀態</label>
<button class="loginBtn">登錄</button>
</div>
</div>
</form>
</div>

2、網頁怎麼製作需要密碼登陸

找一個MD5的頁,然後再用個ASP頁面Write""來建個config的內容存儲頁就行了,下次登陸時,驗證config中存儲的內容就行了
==============================
帳號設置頁:

用戶名:______________<name=user>
密碼:____________<name=pass>
提交 action="aa.asp"
==============================

=====aa.asp==========================

username = trim(Request.form("user"))
userpass = md5(trim(Request.form("pass")))
voteincdir = server.mappath("../config.asp")
Const ForReading =1, ForWriting = 2
set fs = CreateObject("Scripting.FileSystemObject")
set tt = fs.OpenTextFile(voteincdir,ForWriting, True)
tt.Write ""
tt.Write "<"
tt.Write "%"& vbCrLf
tt.Write " userneme= "&""""&userneme&""""& vbCrLf
tt.Write " userpass= "&""""&userpass&""""& vbCrLf
tt.Write "%"
tt.Write ">"
tt.close
response.write "<script language=javascript>"
response.write "alert('帳號設置成功!');"
response.write "</script>"

============================

==================

登陸頁自己寫吧

3、如何製作網頁登陸界面?

<html>
<head>
</head>
<body>
<form>
2個文本框(用戶名+密碼)
提交按鈕 提交到動態頁(asp\aspx\php\jsp)做判斷
</form>
</body>
</html>

4、用C#製作一個網站的登陸界面:輸入用戶名,密碼。

把做好的網站 用iis 發布,設置IP和埠(默認為80)。區域網內的用戶可以通過IP+埠訪問。
你如果是想問編程的代碼。可以留言,我發你一份以前的。

5、html語言如何實現帳號密碼登陸

html可以使用表單進行的最簡單的賬號密碼登錄的頁面設計,但是不具備判斷賬號密碼正確性等邏輯的能力,這個需要後台語言處理反饋。

工具原料:編輯器、瀏覽器

1、使用form表單事件最簡單的賬號密碼登錄的數據提交,代碼如下:

<!DOCTYPE html>
<html>
<body>

<form action="login.php">
用戶名:<br>
<input type="text" name="firstname" value="請輸入賬號">
<br>
密碼:<br>
<input type="text" name="lastname" value="請輸入密碼">
<br><br>
<input type="submit" value="Submit">
</form> 
</body>
</html>

2、點擊提交數據將會提交給login.php進行處理,運行的結果如下:

6、如何製作輸入用戶名及密碼才可以登陸的網頁

我就是動態網頁方面的專家(精通asp、asp.net和php網站語言),我把我用php做好的後台登陸代碼亮出來給你看看

第一步:要先把登陸框的靜態頁面做好。

第二步:用php+sql來做動態的登陸(文件名:login.php)代碼如下:

<?php session_start();?>


<html>

<head>

<meta http-equiv="Content-Type" content="text/html; charset=gb2312">

<title>驗證碼技術登錄</title>

</head>

<style>

td{

font-size:9pt;

}

</style>

<script language="javascript">

function check(myform){

if(myform.txt_user.value==""){

alert("請輸入用戶名!");myform.txt_user.focus();return false;

}

if(myform.txt_pwd.value==""){

alert("請輸入密碼!");myform.txt_pwd.focus();return false;

}

if(myform.txt_yan.value==""){

alert("請輸入驗證碼!");myform.txt_yan.focus();return false;

}

if(myform.txt_yan.value!=myform.txt_hyan.value){

alert("對不起,您輸入的驗證碼不正確!");myform.txt_yan.focus();return false;

}

}

</script>

<body>

<table width="693" height="346" border="0" align="center" cellpadding="0" cellspacing="0">

<tr>

<td background="images/image_02.png">

<form name="myform" method="post"  action="checkuser.php">

<table width="693" border="0" cellspacing="0" cellpadding="0">

<tr>

<td height="42" colspan="5">&nbsp;</td>

</tr>

<tr>

<td width="154" height="117" rowspan="4">&nbsp;</td>

<td height="13" colspan="3" align="center" valign="top">&nbsp;</td>

<td width="160" rowspan="4">&nbsp;</td>

</tr>

<tr>

<td width="99" height="30" align="right" valign="middle">用戶名:</td>

<td colspan="2" align="left" valign="middle"><input type="text" name="txt_user"></td>

</tr>

<tr>

<td height="30" align="right" valign="middle">密&nbsp;&nbsp;碼:</td>

<td height="30" colspan="2" align="left" valign="middle"><input type="password" name="txt_pwd" onCopy="return false" onCut="return false" onPaste="return false" maxlength="60"></td>

</tr>

<tr>

<td height="30" align="right" valign="middle">驗證碼:</td>

<td width="218" height="32" align="left" valign="middle"><input type="text" name="txt_yan">

<?php

$num=intval(mt_rand(1000,9999));

for($i=0;$i<4;$i++){

echo "<img src=images/checkcode/".substr(strval($num),$i,1).".gif>"; //輸出隨機的數字圖形

}

?> 

<input type="hidden" name="txt_hyan" id="txt_hyan" value="<?php echo $num;?>" >

</td>

<td width="62" align="left" valign="middle"><input type="submit" name="Submit" value="登錄" onClick="return check(myform);"></td>

</tr>

<tr>

<td height="62" colspan="5">&nbsp;</td>

</tr>

</table>

</form>

</td>

</tr>

</table>

</body>

</html>

效果如下:

7、請問網頁製作用戶登錄界面用戶名和密碼怎麼做?謝謝。

前端開發,從模仿開始
各種登錄,驗證碼demo,先熟悉一批,在學會文本框輸入綁定以及關聯數據欄位加密,一步一步來

8、網頁製作中登陸界面設計代碼

<%@language=vbscript codepage=936 %>
<%
option explicit
'強制瀏覽器重新訪問伺服器下載頁面,而不是從緩存讀取頁面
Response.Buffer = True
Response.Expires = -1
Response.ExpiresAbsolute = Now() - 1
Response.Expires = 0
Response.CacheControl = "no-cache"
'主要是使隨機出現的圖片數字隨機
%>
<html>
<head>
<title>管理員登錄</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link rel="stylesheet" href="Admin_Style.css">
<script language=javascript>
function SetFocus()
{
if (document.Login.UserName.value=="")
document.Login.UserName.focus();
else
document.Login.UserName.select();
}
function CheckForm()
{
if(document.Login.UserName.value=="")
{
alert("請輸入用戶名!");
document.Login.UserName.focus();
return false;
}
if(document.Login.Password.value == "")
{
alert("請輸入密碼!");
document.Login.Password.focus();
return false;
}
//if (document.Login.CheckCode.value==""){
// alert ("請輸入您的驗證碼!");
// document.Login.CheckCode.focus();
// return(false);
}
}
</script>
</head>
<body onLoad="SetFocus();">
<p> </p>
<form name="Login" action="Admin_ChkLogin.asp" method="post" target="_parent" onSubmit="return CheckForm();">
<table width="300" border="0" align="center" cellpadding="5" cellspacing="0" class="border" >
<tr class="title">
<td colspan="2" align="center"> <strong>管理員登錄</strong></td>
</tr>

<tr>
<td height="120" colspan="2" class="tdbg">
<table width="250" border="0" cellspacing="8" cellpadding="0" align="center">
<tr>
<td align="right">用戶名稱:</td>
<td><input name="UserName" type="text" id="UserName2" size="23" maxlength="20"></td>
</tr>
<tr>
<td align="right">用戶密碼:</td>
<td><input name="Password" type="password" size="23" maxlength="20"></td>
</tr>
<tr>
<td align="right">驗 證 碼:</td>
<td><input name="CheckCode" size="15" maxlength="6">
1109 </td>
</tr>
<tr>
<td colspan="2"> <div align="center">
<input type="submit" name="Submit" value=" 確認 ">

<input name="reset" type="reset" id="reset" value=" 清除 ">
<br>
</div></td>
</tr>
</table>
</td>
</tr>
</table>
<p align="center">後台管理頁面需要屏幕解析度為 <font color="#FF0000"><strong>1024*768</strong></font>
或以上才能達到最佳瀏覽效果!<br>
需要瀏覽器為<strong><font color="#FF0000"> </font></strong><font color="#FF0000"><strong>IE5.5</strong></font>
或以上版本才能正常運行!!!</p>
</form>
</body>
</html>

與網頁設計登陸界面用戶名密碼相關的知識