-
-
Notifications
You must be signed in to change notification settings - Fork 232
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
- Loading branch information
Showing
2 changed files
with
20 additions
and
9 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 |
---|---|---|
|
@@ -11,22 +11,24 @@ | |
<BitTypography Variant="BitTypographyVariant.H1" Gutter Class="page-title">Contact us</BitTypography> | ||
<br /> | ||
<BitTypography Variant="BitTypographyVariant.H5" Gutter> | ||
Let's talk about your project.<br />Send us a message and we will get back to you within one business day. | ||
Email: <a href="mailto:[email protected]" target="_blank" rel="noopener noreferrer">info@bitplatform.dev</a> | ||
</BitTypography> | ||
<br /> | ||
<BitTypography Variant="BitTypographyVariant.H5" Gutter> | ||
Email: <a href="mailto:[email protected]" target="_blank" rel="noopener noreferrer">info@bitplatform.dev</a> | ||
Let's talk about your project. | ||
<br /> | ||
Send us an email and we will get back to you. | ||
</BitTypography> | ||
|
||
<br /><br /> | ||
|
||
<div class="contact-container"> | ||
<EditForm Model="contactUsModel" OnValidSubmit="WrapHandled(SendMessage)" class="form" novalidate> | ||
<DataAnnotationsValidator /> | ||
|
||
<BitTypography Variant="BitTypographyVariant.H5" Gutter> | ||
Have any feedbacks? | ||
<BitIconButton IconName="@BitIconName.Reset" Title="Reset form" | ||
ButtonType="BitButtonType.Button" | ||
OnClick="() => contactUsModel = new()">Reset</BitIconButton> | ||
|
||
</BitTypography> | ||
|
||
<BitTextField @bind-Value="@contactUsModel.Email" | ||
|
@@ -43,7 +45,16 @@ | |
Placeholder="Enter your message" /> | ||
<ValidationMessage For="() => contactUsModel.Message" /> | ||
|
||
<BitButton IsLoading="isSending" ButtonType="BitButtonType.Submit">Send</BitButton> | ||
<div style="display:flex;justify-content:center"> | ||
<div style="flex-grow:1"> | ||
<BitButton IsLoading="isSending" | ||
ButtonType="BitButtonType.Submit">Send</BitButton> | ||
</div> | ||
|
||
<BitIconButton IconName="@BitIconName.Reset" Title="Reset form" | ||
ButtonType="BitButtonType.Button" | ||
OnClick="() => contactUsModel = new()">Reset</BitIconButton> | ||
</div> | ||
</EditForm> | ||
</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