This repository has been archived by the owner on Sep 27, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d07b8ff
commit 94fc78a
Showing
5 changed files
with
71 additions
and
27 deletions.
There are no files selected for viewing
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
"use strict"; | ||
export class CRegisterComponent extends HTMLElement { | ||
constructor() { | ||
super(); | ||
// this.shadow = this.createShadowRoot(); | ||
} | ||
|
||
static get observedAttributes() { | ||
return []; | ||
} | ||
|
||
attributeChangedCallback(name, oldValue, newValue) { | ||
|
||
} | ||
|
||
connectedCallback() { | ||
var template = ` | ||
<div class="auth-page"> | ||
<div class="container page"> | ||
<div class="row"> | ||
<div class="col-md-6 offset-md-3 col-xs-12"> | ||
<h1 class="text-xs-center">Sign up</h1> | ||
<p class="text-xs-center"> | ||
<a href="">Have an account?</a> | ||
</p> | ||
<!--<ul class="error-messages">--> | ||
<!--<li>That email is already taken</li>--> | ||
<!--</ul>--> | ||
<form> | ||
<fieldset class="form-group"> | ||
<input class="form-control form-control-lg" type="text" placeholder="Your Name"> | ||
</fieldset> | ||
<fieldset class="form-group"> | ||
<input class="form-control form-control-lg" type="text" placeholder="Email"> | ||
</fieldset> | ||
<fieldset class="form-group"> | ||
<input class="form-control form-control-lg" type="password" placeholder="Password"> | ||
</fieldset> | ||
<button class="btn btn-lg btn-primary pull-xs-right"> | ||
Sign up | ||
</button> | ||
</form> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
`; | ||
this.innerHTML = template; | ||
} | ||
|
||
|
||
} |
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