<!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>