This repository has been archived by the owner on Apr 26, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 73
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
Showing
111 changed files
with
3,577 additions
and
675 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
var config = { | ||
map: { | ||
"*": { | ||
"amastyGiftCardMain": "Amasty_GiftCard/js/main", | ||
} | ||
} | ||
}; |
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,119 @@ | ||
<!-- ko foreach: getRegion('amazon-button-region') --> | ||
<!-- ko template: getTemplate() --><!-- /ko --> | ||
<!-- /ko --> | ||
|
||
<!-- ko ifnot: isCustomerLoggedIn() --> | ||
|
||
<!-- ko foreach: getRegion('before-login-form') --> | ||
<!-- ko template: getTemplate() --><!-- /ko --> | ||
<!-- /ko --> | ||
<form | ||
class="form form-login" | ||
data-role="email-with-possible-login" | ||
data-bind="submit:login" | ||
method="post" | ||
> | ||
<fieldset | ||
id="customer-email-fieldset" | ||
class="fieldset" | ||
data-bind="blockLoader: isLoading" | ||
> | ||
<div class="field required"> | ||
<label | ||
class="label" | ||
for="customer-email" | ||
> | ||
<span data-bind="i18n: 'Email Address'"></span> | ||
</label> | ||
<div class="control _with-tooltip"> | ||
<input | ||
class="input-text" | ||
type="email" | ||
data-bind=" | ||
textInput: email, | ||
hasFocus: emailFocused" | ||
name="username" | ||
data-validate="{required:true, 'validate-email':true}" | ||
id="customer-email" | ||
/> | ||
<!-- ko template: 'ui/form/element/helper/tooltip' --><!-- /ko --> | ||
<span | ||
class="note" | ||
data-bind="fadeVisible: isPasswordVisible() == false" | ||
> | ||
<!-- ko i18n: 'You can create an account after checkout.'--><!-- /ko --> | ||
</span> | ||
</div> | ||
</div> | ||
|
||
<!--Hidden fields --> | ||
<fieldset | ||
class="fieldset hidden-fields" | ||
data-bind="fadeVisible: isPasswordVisible" | ||
> | ||
<div class="field"> | ||
<label | ||
class="label" | ||
for="customer-password" | ||
> | ||
<span data-bind="i18n: 'Password'"></span> | ||
</label> | ||
<div class="control"> | ||
<input | ||
class="input-text" | ||
placeholder="optional" | ||
type="password" | ||
name="password" | ||
id="customer-password" | ||
data-validate="{required:true}" | ||
autocomplete="off" | ||
/> | ||
<span | ||
class="note" | ||
data-bind="i18n: 'You already have an account with us. Sign in or continue as guest.'" | ||
></span> | ||
</div> | ||
|
||
</div> | ||
<!-- ko foreach: getRegion('additional-login-form-fields') --> | ||
<!-- ko template: getTemplate() --><!-- /ko --> | ||
<!-- /ko --> | ||
<div | ||
class=" | ||
login-buttons | ||
shipping-address__login-buttons | ||
" | ||
> | ||
<input | ||
name="context" | ||
type="hidden" | ||
value="checkout" | ||
/> | ||
<button | ||
type="submit" | ||
class=" | ||
action | ||
login | ||
primary | ||
shipping-address__btn-login | ||
" | ||
data-action="checkout-method-login" | ||
> | ||
<span data-bind="i18n: 'Login'"></span> | ||
</button> | ||
<a | ||
class=" | ||
action | ||
remind | ||
shipping-address__btn-remind | ||
" | ||
data-bind="attr: { href: forgotPasswordUrl }" | ||
> | ||
<span data-bind="i18n: 'Forgot Your Password?'"></span> | ||
</a> | ||
</div> | ||
</fieldset> | ||
<!--Hidden fields --> | ||
</fieldset> | ||
</form> | ||
<!-- /ko --> |
Oops, something went wrong.