კურსის შიგთავსი
5. ჩაშენებული სტრუქტურული დირექტივები
0/4
6. პრაქტიკა: ახალი კომპონენტების შექმნა და კოდის რეფაქტორება
0/2
19. Routing
0/29
Angular – Front-End დეველოპმენტი

HMTL:

<form>
 <h2>Login</h2>
 <div class="control-row">
   <div class="control">
     <label for="email">Email</label>
     <input id="email" type="email" />
   </div>
   <div class="control">
     <label for="password">Password</label>
     <input id="password" type="password" />
   </div>
   <button>Login</button>
 </div>
</form>

CSS:

form {
   width: 500px;
   height: 230px;
   background-color: bisque;
}

h2 {
   text-align: center;
   padding-top: 10px;
}

.control-row {
   display: flex;
   flex-direction: column;
   align-items: center;
}

.control {
   display: flex;
   flex-direction: row;
 margin-top: 20px;
}

label {
   min-width: 100px;
}

button {
   margin-top: 30px;
}