嗨,我有以下代码:
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Registration Form</title>
<script type="text/javascript">
function validateForm() {
var x = document.forms["myForm"]["uname"].value;
var y = document.forms["myForm"]["pass"].value;
if (x == null || x == "") {
alert("UserName must be filled out");
return false;
}
if (y == null || y == "") {
alert("Password must be filled out");
return false;
}
}
</script>
</head>
<body>
<h2> Register new GreenHouse </h2>
<div>
<form id="login" name= "myForm" method="put" action="" onsubmit="return validateForm()">
<fieldset id="inputs">
<input name="uname" id="username" type="text" placeholder="Username" autofocus required>
<input name="pass" id="password" type="password" placeholder="Password" required>
</fieldset>
<fieldset id="actions">
<input type="submit" id="submit" value="Log in">
</fieldset>
</form>
</div>
</body>
</html>
我希望能够使用用户名和密码的值并在另一个网站(例如 yahoo 或 google)上创建一个新帐户。我不太确定如何开始这样做。当有人在文本框中填写一个具有相同用户 ID 和密码(与他们输入的一样)的新帐户时,将为他们创建一个基本概念。如果有人能给我指路或给我看一个关于这个的教程,我会很高兴。