<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>HTML</title>
</head>
<body>
<h2>Change button text</h2>
<p> A form may contain more than one button whose name can be set accordingly</p>
<form>
<label for="name">Enter name:</label>
<input type="text" name="name" id="name" ><br>
<label for="pwd">Password</label>
<input type="password" name="pwd" id="pwd"><br>
<input type="submit" value="login">
<input type="submit" value="signup">
</form>
</body>
</html>