21 lines
431 B
HTML
21 lines
431 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Lotus Fountain</title>
|
|
<style>
|
|
body {
|
|
font-family: 'monospace';
|
|
background: #1f1f1f;
|
|
color: #f0f0f0;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<form action='/send' method='get'>
|
|
<span>Enter destination address:</span>
|
|
<input type='text' name='address' style="width: 300px">
|
|
<button type='submit'>Send</button>
|
|
</form>
|
|
</body>
|
|
</html>
|