-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSF_form.html
47 lines (39 loc) · 1.13 KB
/
SF_form.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
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>