Input
Tec{h}tonic gives you mainly 2 types of input fields for different uses.
Simple Input Field
You can add this template to have input fields like this.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="box">
<label>Username</label>
<input type="text" class="email-id-input input">
</div>
<div class="box">
<label class="password-label">Password</label>
<input type="password" class="password-input input" required>
<div class="invalid-message">Password required</div>
</div>
Search Bar Input
You can add a this template to have a search bar in your website.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="box">
<input type="text" placeholder="Search" class="search-box input">
</div>