This file contains 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
class BtnLogged(Button): | |
def __init__(self, native: Native, journal: Journal): | |
self.native = native | |
self.journal = journal | |
self.message = StrFormatted( | |
StrLiteral("Clicking button %s"), | |
StrNativeDesc(native) | |
) | |
self.level = LvlDefault(logging.DEBUG) |
This file contains 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> | |
<h1>Welcome to e-folio <!--Or whatsoever--> </h1> | |
<form [formGroup]="signupForm" (ngSubmit)="onSubmit()"> | |
<input formControlName="email" | |
type="email" | |
id="email" | |
placeholder="[email protected]"/> | |
<input formControlName="password" | |
id="password" | |
type="password" /> |