-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
hotfix editprofile, header.html, gửi email sau khi paypal, jasypt app…
….prop, check info trống khi checkout
- Loading branch information
Showing
12 changed files
with
82 additions
and
54 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
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 |
---|---|---|
|
@@ -44,8 +44,8 @@ spring.security.oauth2.client.registration.github.scope=user:email,read:user | |
# For Mail | ||
spring.mail.host=smtp.gmail.com | ||
spring.mail.port=587 | ||
spring.mail.username=[email protected] | ||
spring.mail.password=kvzgzfliinljxnug | ||
spring.mail.username=ENC(Y5t9L5007g231OuDoPnIh19q4y/ICObTAj7OJZty9K4=) | ||
spring.mail.password=ENC(0UfJRnRcwqE7wIMv20Dcvyc7olB34CadSiK9AqZDHuY=) | ||
spring.mail.properties.mail.smtp.auth=true | ||
spring.mail.properties.mail.smtp.starttls.enable=true | ||
|
||
|
@@ -57,6 +57,3 @@ paypal.client.secret=EBWG-ni6c47OZYBwpYCJUJu5GST_On7dupA0Ise4JkQXDxf6uHYPZEXsR-u | |
# For Exchange Rate apikey | ||
apilayer.apikey=6h7fgfiZtBDuie6LxtyKp5cqVxwjaKnV | ||
|
||
# JWT App Properties | ||
bezkoder.app.jwtSecret=bezKoderSecretKey | ||
bezkoder.app.jwtExpirationMs=86400000 |
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 |
---|---|---|
|
@@ -16,10 +16,10 @@ | |
<div class="form-group mb-3"> | ||
<label for="customFile">Ảnh:</label> | ||
<figure> | ||
<img ng-src="{{ (form.image_url.startsWith('upload')?'/upload/images/':'/assets/images/') + (form.image_url || 'default-user.jpg') }}" | ||
<img ng-src="{{ (form.image_url.startsWith('upload')?'/upload/images/':(form.image_url.startsWith('https://')?'':'/assets/images/')) + (form.image_url || 'default-user.jpg') }}" | ||
class="img-fluid img-thumbnail" width="120" height="120"> | ||
</figure> | ||
<input ng-model="form.image_url" onchange="angular.element(this).scope().imageChanged(this.files)" type="file" class="form-control" | ||
<input ng-hide="form.image_url.startsWith('https://')" ng-model="form.image_url" onchange="angular.element(this).scope().imageChanged(this.files)" type="file" class="form-control" | ||
id="customFile" /> | ||
</div> | ||
<div class="row"> | ||
|
@@ -42,7 +42,7 @@ | |
</div> | ||
<div class="form-group col-6 mb-2"> | ||
<label for="email">Email </label> | ||
<input ng-model="form.email" type="text" name="txtEmail" class="form-control" placeholder="[email protected]" required> | ||
<input ng-model="form.email" type="text" name="txtEmail" class="form-control" placeholder="[email protected]" ng-disabled="form.image_url.startsWith('https://')" required> | ||
<label ng-show="myform.txtEmail.$invalid" class="badge badge-danger my-2 p-2">Xin hãy nhập email! </label> | ||
</div> | ||
</div> | ||
|
@@ -66,7 +66,7 @@ | |
<i class="fas fa-save"></i> Lưu | ||
</button> | ||
<button ng-click="reset()" type="submit" class="btn btn-danger"> | ||
Hủy | ||
Xóa hết | ||
</button> | ||
</div> | ||
</div> | ||
|
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
Oops, something went wrong.