20 lines
550 B
Plaintext
20 lines
550 B
Plaintext
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>GenCall Form</title>
|
|
</head>
|
|
<body>
|
|
<button onclick="window.location.href='logout'">Logout</button>
|
|
<form action="genCall" method="post">
|
|
<label for="name">Name:</label>
|
|
<input type="text" id="name" name="name" required><br><br>
|
|
|
|
<label for="number">Number:</label>
|
|
<input type="tel" id="number" name="number" required><br><br>
|
|
|
|
<input type="submit" value="Submit">
|
|
</form>
|
|
</body>
|
|
</html> |