• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
0

Tag must be paired, missiong:

New Here ,
Mar 10, 2020 Mar 10, 2020

Copy link to clipboard

Copied

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Documento sin título</title>
</head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>:: Xpress :: Firma para Email</title>
         	<link href="./style.css" rel="stylesheet" type="text/css">
        <script type="text/javascript"><br />
			function validar (form) {<br />
				if ((form.nombre.value) == "" ) {<br />
					alert ("Por favor digite el Nombre.");<br />
					document.getElementById('n').focus();<br />
					return false; }<br />
				else if ((form.cargo.value) == "" ) {<br />
					alert ("Por favor digite el Cargo.");<br />
					document.getElementById('c').focus();<br />
					return false; }<br />
				else if ((document.getElementById('skypesi').checked) && (form.skypeaccount.value) == "" ) {<br />
					alert ("Por favor indique la cuenta de Skype!");<br />
					document.getElementById('skypeaccount').focus();<br />
					return false; }<br />
		  		else if ((form.dir.value) == "" ) {<br />
					alert ("Por favor seleccione el Centro de Operaciones.");<br />
					document.getElementById('cmbdir').focus();<br />
					return false; }<br />
				else {<br />
					return true; } }<br />
			function estadoskype(estado) {<br />
				document.getElementById('skypeaccount').disabled = !estado; }<br />
		</script>
<!--<?php include('estilo.html'); ?>-->
<!--?php require_once('wp-load.php'); if ( !is_user_logged_in() && !current_user_can( 'manage_options' ) ) die( 'Si no eres administrador no puedes ver esta página.' ); ?-->

<form action="webfirma.php" method="post" name="firma" class="texto" id="firma" onsubmit="return validar(this)">                <!-- Inicio Pie de Página -->

<!-- Fin de Pie de Página -->
<table width="800" border="0" cellspacing="0" cellpadding="0" align="center">
<tbody>
<tr align="center" valign="top">
<td><!--?php include ('./encabezado.html'); ?--></td>
</tr>
<tr align="center">
<td>
                        <!--Tabla con contenido diseñado-->
<table width="100%" border="0" cellspacing="5" cellpadding="0">
<tbody>
<tr>
<td colspan="2" height="25" class="titProductos" align="center">
                                	<strong>Por favor complete la siguiente información y haga clic en el Botón Ver</strong></td>
</tr>
<tr>
<td width="30%" align="right" class="EstDet">(<span class="EstReq">*</span>) <strong>Nombre:</strong></td>
<td width="70%" class="EstDet">
                                	<input id="n" name="nombre" type="text" value="" size="30"></td>
</tr>
<tr>
<td width="30%" align="right" class="EstDet">(<span class="EstReq">*</span>) <strong>Cargo:</strong></td>
<td width="70%" class="EstDet">
                                	<input id="c" name="cargo" type="text" value="" size="50"></td>
</tr>
<tr>
<td width="30%" align="right" class="EstDet">
                                	<strong>Celular:</strong></td>
<td width="70%" class="EstDet">
                              		<input name="cel" type="text" value="" size="10" maxlength="10" align="absmiddle">
(Ej: 320838<i>XXXXX</i>)</td>
</tr>
<tr>
<td width="30%" align="right" class="EstDet">
                                	<strong>Ext:</strong></td>
<td width="70%" class="EstDet">
                              		<input name="ext" type="text" value="" size="6" maxlength="3"></td>
</tr>
<tr>
<td width="30%" align="right" class="EstDet">
                                	<strong>WebToCall:</strong></td>
<td width="70%" class="EstDet">
                                <input name="webtocall" type="text" id="webtocall" value="" size="20"></td>
</tr>
<tr>
<td width="30%" align="right" class="EstDet">(<span class="EstReq">*</span>)
<strong>Email:</strong></td>
<td width="70%" class="EstDet">
                                	<input name="email" type="email" value="@xpress.com.co" size="40">
(<i><b>nombre.apellido</b></i>@xpress.com.co)</td>
</tr>
<tr>
<td width="30%" align="right" class="EstDet">(<span class="EstReq">*</span>)
<strong>Skype:</strong></td>
<td width="70%" class="EstDet">
                                	<input id="skypesi" name="skype" type="radio" onclick="estadoskype(true)" value="Sí"> Sí
<input name="skype" type="radio" id="skypeno" onclick="estadoskype(false)" value="No" checked="checked"> No</td>
</tr>
<tr>
<td class="EstDet" style="border: none;" align="right" width="30%">(<span class="EstReq">*</span>) <strong>Cuenta Skype:</strong></td>
<td class="EstDet" style="border: none;" width="70%"><input id="skypeaccount" disabled="disabled" name="skypeaccount" required="" size="20" type="text" value="" /> (<i><b>live:nombre.apellido</b></i>)</td>
<tr>
<td width="30%" align="right" class="EstDet">
                                	<strong>Centro de Operaciones1:</strong></td>
<td width="70%" class="EstDet">
                                	<select name="dir" id="cmbdir">
<option value="" selected="selected">Seleccione una Opción...</option>
<option value="1">Ferias</option>
</select></td>
</tr>
<tr>
<td colspan="2" align="center" class="EstDet" height="40">
                                	<input name="Ver" type="submit" value="Ver">
&nbsp;&nbsp;&nbsp;
<input name="Cancelar" type="reset" value="Cancelar"></td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr valign="bottom">
<td><!--?php include ('pie.html'); ?--></td>
</tr>
</tbody>
</table>
</form>
<body>
</body>
</html>

me aparece el siguiente error y no consigo corregirlo:

error.JPG

Views

357

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

Community Expert , Mar 10, 2020 Mar 10, 2020

The tag on line 96 (<tr>) must be matched by an ending tag (</tr>) on line 99.

 

In other words, add </tr> on line 99

Votes

Translate

Translate
Community Expert ,
Mar 10, 2020 Mar 10, 2020

Copy link to clipboard

Copied

LATEST

The tag on line 96 (<tr>) must be matched by an ending tag (</tr>) on line 99.

 

In other words, add </tr> on line 99

Wappler, the only real Dreamweaver alternative.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines