入力フォーム2に記入する練習

11283 ワード


日付と時刻
</head>
<body>
    <form>
        <h1>날짜 지정하기</h1>
        <input type="date">
        <input type="month">
        <input type="week">
        <hr>
        <hr>
        <h1>시간 지정하기</h1>
        <input type="time">
        <input type="datetime-local">
        <hr>
        <h1>범위 제한하기</h1>
        <input type="date" min="2020-02-01"  max="2020-02-15">
        <input type="time" min="14:00" max="16:00">
    </form>



</body>
-なんてことだ
hidden type=サーバへのログイン情報の送信
<head>
    <meta charset="Utf-8">
    <title>로그인</title>


</head>
<body>
    <fieldset>
        <input type="hidden" name="url" id="url" value="사이트를 통한 직접 로그인">
        <label>아이디:<input type="text" id="use_id" size="10"> </label>
        <label>비밀번호 : <input type="password" id="user_pw" size="10"></label>
        <input type="submit" value="로그인">
    </fieldset>