-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
47 lines (35 loc) · 2.3 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
46
47
<!DOCTYPE html>
<html>
<head>
<link href="style.css" rel="stylesheet" type="text/css">
<title> V1 - Formulario de creacion de casos</title>
</head>
<body>
<!-- ---------------------------------------------------------------------- -->
<!-- NOTA: Agregue el siguiente elemento <META> a su página <HEAD>. Si es -->
<!-- preciso, modifique el parámetro charset para especificar el conjunto -->
<!-- de caracteres de su página HTML. -->
<!-- ---------------------------------------------------------------------- -->
<META HTTP-EQUIV="Content-type" CONTENT="text/html; charset=UTF-8">
<!-- ---------------------------------------------------------------------- -->
<!-- NOTA: Agregue el siguiente elemento <FORM> a su página. -->
<!-- ---------------------------------------------------------------------- -->
<form action="https://clarochileb2c--devmain.my.salesforce.com/servlet/servlet.WebToCase?encoding=UTF-8" method="POST">
<input type=hidden name="orgid" value="00D3K0000008oju">
<input type=hidden name="retURL" value="https://lpetrilabsxd.github.io/formulariodevmain/">
<!-- ---------------------------------------------------------------------- -->
<!-- NOTA: Estos campos son elementos de depuración opcionales. Elimine -->
<!-- los comentarios de estas líneas si desea realizar una prueba en el -->
<!-- modo de depuración. -->
<!-- <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>