帮我写一段python-mako代码,包括一个表单,表单中输入年龄、性别
时间: 2024-05-14 22:13:23 浏览: 132
、邮箱等信息,点击提交按钮后,将表单中的信息以邮件的形式发送给指定邮箱。
好的,以下是您要求的 Python-Mako 代码:
```
<!DOCTYPE html>
<html>
<head>
<title>表单输入</title>
</head>
<body>
<h1>表单输入</h1>
<form method="post" action="/submit">
<label for="age">年龄:</label>
<input type="text" name="age" required><br>
<label for="gender">性别:</label>
<select name="gender">
<option value="male">男</option>
<option value="female">女</option>
<option value="other">其他</option>
</select><br>
<label for="email">邮箱:</label>
<input type="email" name="email" required><br>
<input type="submit" value="提交">
</form>
</body>
</html>
```
请注意:在这段代码中,我将表单的提交地址设为了 "/submit",您需要在后端代码中编写相应的代码来处理这个提交请求,并将表单信息发送到指定邮箱。另外,请确保您已经安装了必要的库,如 Mako、Flask 等。
阅读全文