html 화면 변경 및 db select 구현

This commit is contained in:
김민구
2024-01-08 19:25:37 +09:00
parent 5f9592ac0b
commit 26d2c56a8d
2 changed files with 85 additions and 13 deletions

View File

@@ -5,11 +5,17 @@
<h2>WMS</h2>
<form action="/method" method="POST">
<label for="fname">사번:</label><br>
<input type="text" id="fname" name="num"><br>
<label for="lname">이름:</label><br>
<input type="text" id="lname" name="name"><br><br>
<label for="date">날짜</label>
<input type="text" id="date" name="date" value="{{date}}"><br><br>
<label for="warehouse_id">창고</label>
<input type="text" id="warehouse_id" name="warehouse_id" value="{{warehouse_id}}"><br><br>
<label for="name">제품명</label>
<input type="text" id="name" value="{{name}}"><br><br>
<label for="quantity">수량</label>
<input type="text" id="quantity" name="quantity" value="{{quantity}}"><br><br>
<input type="submit" value="확인">
<input type="submit" value="취소">
</form>
</body>