-
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.
updated the frontend production url in the server
- Loading branch information
Showing
4 changed files
with
10 additions
and
8 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 |
---|---|---|
|
@@ -61,7 +61,7 @@ function Footer() { | |
<AnimatedTooltip items={people} /> | ||
</div> | ||
<p> | ||
<strong>Email:</strong> [email protected] | ||
<strong>Email:</strong> [email protected] | ||
</p> | ||
<p> | ||
<strong>Address:</strong> Rizvi Educational Complex Off Carter Road, Sherly Rajan Rd, Bandra West, Mumbai, Maharashtra 400050 | ||
|
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 |
---|---|---|
|
@@ -52,7 +52,7 @@ def create(self, validated_data): | |
send_mail( | ||
'Your OTP Code', | ||
plain_message, | ||
'[email protected]', # Replace with your email | ||
'[email protected]', # Replace with your email | ||
[validated_data['email']], | ||
fail_silently=False, | ||
html_message=html_message, | ||
|
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,7 +44,7 @@ def put(self, request): | |
send_mail( | ||
f'Welcome {user.name},', | ||
plain_message, | ||
'[email protected]', # Replace with your email | ||
'[email protected]', # Replace with your email | ||
[user.email], | ||
fail_silently=False, | ||
html_message=html_message, | ||
|
@@ -123,7 +123,7 @@ def post(self, request): | |
send_mail( | ||
f'Password reset request', | ||
plain_message, | ||
'[email protected]', # Replace with your email | ||
'[email protected]', # Replace with your email | ||
[email], | ||
fail_silently=False, | ||
html_message=html_message, | ||
|
@@ -154,7 +154,7 @@ def post(self, request): | |
send_mail( | ||
f'Password reset succesfully', | ||
plain_message, | ||
'[email protected]', # Replace with your email | ||
'[email protected]', # Replace with your email | ||
[email], | ||
fail_silently=False, | ||
html_message=html_message, | ||
|
@@ -190,7 +190,7 @@ def post(self, request): | |
send_mail( | ||
f'Welcome {user.name},', | ||
plain_message, | ||
'[email protected]', # Replace with your email | ||
'[email protected]', # Replace with your email | ||
[user.email], | ||
fail_silently=False, | ||
html_message=html_message, | ||
|
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