使用自定义按钮输入密码

时间:2015-12-08 12:20:06

标签: html

我目前正在尝试将自己的登录按钮添加到我的密码框中,但我无法将它们链接在一起。我非常感谢密码输入和自定义按钮的任何帮助。

这是我输入的密码:

<label class="hidden-label" for="Passwd"></label>
<input id="Passwd" name=" Passwd" type="password" placeholder=" Password" 
   class="" style="width: 275px; height: 43px;"/>

这是我的按钮:

<a href="login.php" class="button blue" >Sign in</a>

我也在使用CSS使它看起来像我想要的那样。

1 个答案:

答案 0 :(得分:1)

为了将密码字段中的数据传递到登录页面,您需要将标签和输入包含在form中,并使用属性action="login.php"

该按钮应为<button>或带有type="submit"的输入。

否则,您的代码无法告知将数据传递到login.php页面。

<form action="login.php">
    <label class="hidden-label" for="Passwd"></label>
    <input id="Passwd" name=" Passwd" type="password" placeholder=" Password" class="" style="width: 275px; height: 43px;"/>
    <input type="submit" value="Sign in" class="button blue">
</form>

更多信息请阅读:W3schools Forms