[JavaScript]製作登入系統


首先先在</head>前面放置登入系統資訊!這是不必需要讓瀏覽者看到的!所以放在HEAD標籤內!
<script language="JavaScript"> 
<!--
function Login(){ 
var done=0; 
var username=document.login.username.value; 
username=username.toLowerCase(); 
var password=document.login.password.value; 
password=password.toLowerCase(); 
if (username=="帳號" && password=="密碼") { window.location="登入後會出現的網站"; done=1; } 
if (done==0) { alert("帳號或密碼錯誤時出現的訊息"); } 

--> 
</script>
若想要多個帳號可以使用的話可以把
if (username=="帳號" && password=="密碼") { window.location="登入後會出現的網站"; done=1; }
無限複製! 
現在背景作業資訊已經設定好了之後那我們就可以來設定<body>標籤內的東西了!
請把以下內容貼上到body標籤內
<center>
<form name="login">
<table border="1" cellpadding="5" style="width: 277px;"><tbody>
<tr><td colspan="2"><center>
會員登入</center>
</td></tr>
<tr>   <td width="51">帳號     </td><td width="194"><span style="font-family: Times New Roman; font-size: small;"><input name="username" type="text" /></span></td></tr>
<tr><td>密碼</td><td><span style="font-family: Times New Roman; font-size: small;"><input name="password" type="password" /></span></td></tr>
<tr><td align="center" colspan="2"><span style="font-family: Times New Roman; font-size: small;"><span style="white-space: normal;"><input onclick="Login()" type="button" value=" 登入 " /></span></span></td></tr>
</tbody></table>
<a href="註冊的網址" target="_blank"><input type="button" value="註冊" /></a> </form>
</center>

好!先在所有東西都設定好了!現在只剩設定註冊的頁面了!

首先!先到google雲端硬碟!

為了方便整理資料縮以先建議建立一個資料夾....
在頁面左邊可以看到叫 [新增] 的紅色按鈕點下去
點下去會看到一個叫 [更多] 點下去
會看到一個叫google表單的東西
就是新增那一個! (google表單)
接下來的註冊內容就由大家自己打上去了!
若又問題請立即通知jeffandhappy@gmail.com