迁移数据库为postgresql

This commit is contained in:
2026-07-17 18:43:24 +08:00
parent 690b4e2ed3
commit 7f0f9df727
10 changed files with 290 additions and 33 deletions

View File

@@ -0,0 +1,19 @@
登录页面
<br>
<form method="post" action="./">
用户名:
<br>
<input type="text" name="username" id="lower" required>
<br>
密码:
<br>
<input type="password" name="passwd" required>
<br>
<button type="submit">登录</button>
</form>
<script>
document.getElementById('lower').addEventListener('input', function() {
this.value = this.value.toLowerCase();
});
</script>