form felder mit require
require sind Plichtfelder , die so ausgefüllt werden wofür sie auch da sind.
Der hier verwendete Code
<html data-lt-installed="true"><head>
<title>Frickl - SELFHTML-Wiki</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
body,html{
height:100vh;
width:100vw;
}
form {
max-width:300px;
margin:auto auto;
border: 1px solid;
padding:10px;
display:flex;
flex-direction:column;
}
label {
width:47%;
}
.column{
display:flex;
}
input {
padding: .5em;
background-color: #fffbf0;
border: 1px solid #e7c157;
width: 47%;
}
input:invalid {
border: 1px solid red;
}