-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
45 lines (33 loc) · 2.14 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<title>Formulario de creacion de casos</title>
</head>
<body>
<!-- ---------------------------------------------------------------------- -->
<!-- NOTE: Please add the following <META> element to your page <HEAD>. -->
<!-- If necessary, please modify the charset parameter to specify the -->
<!-- character set of your HTML page. -->
<!-- ---------------------------------------------------------------------- -->
<META HTTP-EQUIV="Content-type" CONTENT="text/html; charset=UTF-8">
<!-- ---------------------------------------------------------------------- -->
<!-- NOTE: Please add the following <FORM> element to your page. -->
<!-- ---------------------------------------------------------------------- -->
<form action="https://clarochileb2c--dev.my.salesforce.com/servlet/servlet.WebToCase?encoding=UTF-8" method="POST">
<input type=hidden name="orgid" value="00D7j000000H2o5">
<input type=hidden name="retURL" value="https://lpetrilabsxd.github.io/formulario/">
<!-- ---------------------------------------------------------------------- -->
<!-- NOTE: These fields are optional debugging elements. Please uncomment -->
<!-- these lines if you wish to test in debug mode. -->
<!-- <input type="hidden" name="debug" value=1> -->
<!-- <input type="hidden" name="debugEmail" value="[email protected]"> -->
<!-- ---------------------------------------------------------------------- -->
<label for="name">Nombre del contacto</label><input id="name" maxlength="80" name="name" size="20" type="text" /><br>
<label for="email">Correo electrónico</label><input id="email" maxlength="80" name="email" size="20" type="text" /><br>
<label for="phone">Teléfono</label><input id="phone" maxlength="40" name="phone" size="20" type="text" /><br>
<label for="subject">Asunto</label><input id="subject" maxlength="80" name="subject" size="20" type="text" /><br>
<label for="description">Descripción</label><textarea name="description"></textarea><br>
<input type="submit" name="submit">
</form>
</body>
</html>