-
Notifications
You must be signed in to change notification settings - Fork 0
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
6 changed files
with
149 additions
and
4 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,47 @@ | ||
<meta http-equiv="Content-type" content="text/html; charset=UTF-8" /> | ||
<link | ||
rel="stylesheet" | ||
href="./assets/styles/SF_form | ||
.css" | ||
/> | ||
|
||
<link | ||
rel="shortcut icon" | ||
type="image/x-icon" | ||
href="./assets/img/trustly-logo.ico" | ||
/> | ||
|
||
<form | ||
action="https://webto.salesforce.com/servlet/servlet.WebToCase?encoding=UTF-8" | ||
method="POST" | ||
> | ||
<input type="hidden" name="orgid" value="00D8c000008ZBzq" /> | ||
<input | ||
type="hidden" | ||
name="retURL" | ||
value="https://trustlyintegration.herokuapp.com/thank-you.html" | ||
/> | ||
|
||
<label for="name">Contact Name</label | ||
><input id="name" maxlength="80" name="name" size="20" type="text" /><br /> | ||
|
||
<label for="email">Email</label | ||
><input id="email" maxlength="80" name="email" size="20" type="text" /><br /> | ||
|
||
<label for="phone">Phone</label | ||
><input id="phone" maxlength="40" name="phone" size="20" type="text" /><br /> | ||
|
||
<label for="subject">Subject</label | ||
><input | ||
id="subject" | ||
maxlength="80" | ||
name="subject" | ||
size="20" | ||
type="text" | ||
/><br /> | ||
|
||
<label for="description">Description</label | ||
><textarea name="description"></textarea><br /> | ||
|
||
<input type="submit" name="submit" /> | ||
</form> |
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,23 @@ | ||
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400&display=swap'); | ||
|
||
* { | ||
box-sizing: border-box; | ||
-webkit-font-smoothing: antialiased; | ||
} | ||
|
||
html, | ||
body { | ||
margin: 0; | ||
font-family: 'Lato', sans-serif; | ||
color: #535353; | ||
} | ||
|
||
body { | ||
height: 100vh; | ||
} | ||
|
||
:focus { | ||
outline-style: none; | ||
outline-color: transparent; | ||
background-color: #ebf9fd; | ||
} |
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,23 @@ | ||
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400&display=swap'); | ||
|
||
* { | ||
box-sizing: border-box; | ||
-webkit-font-smoothing: antialiased; | ||
} | ||
|
||
html, | ||
body { | ||
margin: 0; | ||
font-family: 'Lato', sans-serif; | ||
color: #535353; | ||
} | ||
|
||
body { | ||
height: 100vh; | ||
} | ||
|
||
:focus { | ||
outline-style: none; | ||
outline-color: transparent; | ||
background-color: #ebf9fd; | ||
} |
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,53 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1" /> | ||
<link rel="stylesheet" href="./assets/styles/main.css" /> | ||
<link | ||
rel="shortcut icon" | ||
type="image/x-icon" | ||
href="./assets/img/trustly-logo.ico" | ||
/> | ||
<title>Integration</title> | ||
</head> | ||
|
||
<body> | ||
<div class="container"> | ||
<header class="header"> | ||
<div class="content-container"> | ||
<img src="./assets/img/white-logo2.svg" class="globex-logo" /> | ||
</div> | ||
</header> | ||
|
||
<main class="main"> | ||
<a class="back-anchor" href="./index.html"> | ||
<img src="./assets/img/arrow-left.svg" alt="" /> | ||
Home | ||
</a> | ||
<h1>Your Submission has been successfully Applied to US Support!</h1> | ||
<img src="./assets/img/order-completed.svg" alt="" /> | ||
</main> | ||
|
||
<footer class="content-container"> | ||
<div class="footer"> | ||
<div id="page-footer" class="grid grid-pad"></div> | ||
<div class="leftfooter"> | ||
<a href="https://www.trustly.net/us/contact-form" target="_blank" | ||
>Contact Us</a | ||
> | ||
| | ||
<a href="https://www.trustly.net/us/" target="_blank" | ||
>Visit our Website</a | ||
> | ||
</div> | ||
<div class="rightfooter"> | ||
<span title="1.120.0-2021-06-07T19:29:59Z">®</span> 2021 | ||
<img src="./assets/img/trial-logofooter.svg" class="logo" />. All | ||
rights reserved. | ||
</div> | ||
</div> | ||
</footer> | ||
</div> | ||
</body> | ||
</html> |