JUST GO

[memo] index.html 본문

Spring Boot/코드정리

[memo] index.html

root_go 2022. 10. 26. 17:46
<!doctype html>
<html lang="ko">
<head>
    <meta charset="UTF-8">
    <meta name="viewport"
          content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>메모</title>
    <link rel="stylesheet" href="/memo/resources/stylesheets/index.css">
    <script defer src="/memo/resources/scripts/index.js"></script>
</head>
<body>
<form class="form" id="form" method="post">
    <div class="field-wrapper">
        <label class="input-container">
            <input autofocus class="input"  maxlength="10" name="name" placeholder="이름" spellcheck="false" type="text">
        </label>
        <label class="input-container">
            <input class="input" maxlength="100" name="text" placeholder="메모" type="text">
        </label>
        <input class="button" type="submit" value="작성">
    </div>
    <div class="warning" id="warning">이름을 입력해 주세요.</div>
</form>
</body>
</html>

'Spring Boot > 코드정리' 카테고리의 다른 글

[memo] application.properties  (0) 2022.10.26
[memo] MemoEntity.java  (0) 2022.10.26
[memo] IMemoMapper.java  (0) 2022.10.26
[memo] MemoMapper.xml  (0) 2022.10.26
[memo] MemoService.java  (0) 2022.10.26