Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 4137 | Rev 4139 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 4137 Rev 4138
Línea 1065... Línea 1065...
1065
            type="text"
1065
            type="text"
1066
            name="description"
1066
            name="description"
1067
            className="form-control"
1067
            className="form-control"
1068
            ref={register({ required: "Por favor ingrese una descripción" })}
1068
            ref={register({ required: "Por favor ingrese una descripción" })}
1069
          />
1069
          />
1070
          {errors.title && <FormErrorFeedback> {errors.description.message}</FormErrorFeedback>}
1070
          {errors.description && <FormErrorFeedback> {errors.description.message}</FormErrorFeedback>}
1071
        </div>
1071
        </div>
1072
        <div className="form-group">
1072
        <div className="form-group">
1073
          <label htmlFor="timezone">Tipo de conferencia</label>
1073
          <label htmlFor="timezone">Tipo de conferencia</label>
1074
          <select
1074
          <select
1075
            name="type"
1075
            name="type"
Línea 1091... Línea 1091...
1091
            <label htmlFor="timezone">Horario</label>
1091
            <label htmlFor="timezone">Horario</label>
1092
            <Datetime
1092
            <Datetime
1093
              dateFormat="DD-MM-YYYY"
1093
              dateFormat="DD-MM-YYYY"
1094
              onChange={(e) => handleDateTime(e.toDate())}
1094
              onChange={(e) => handleDateTime(e.toDate())}
1095
              inputProps={{ className: 'form-control' }}
1095
              inputProps={{ className: 'form-control' }}
1096
              initialValue={Date.parse(date)}
1096
              initialValue={Date.parse(new Date())}
1097
              closeOnSelect
1097
              closeOnSelect
1098
            />
1098
            />
1099
          </div>
1099
          </div>
1100
        }
1100
        }
1101
        <div className="form-group">
1101
        <div className="form-group">
Línea 1131... Línea 1131...
1131
            <option value={30}>30-min</option>
1131
            <option value={30}>30-min</option>
1132
            <option value={35}>35-min</option>
1132
            <option value={35}>35-min</option>
1133
            <option value={40}>40-min</option>
1133
            <option value={40}>40-min</option>
1134
            <option value={45}>45-min</option>
1134
            <option value={45}>45-min</option>
1135
          </select>
1135
          </select>
1136
          {errors.timezone && <FormErrorFeedback>{errors.timezone.message}</FormErrorFeedback>}
-
 
1137
        </div>
1136
        </div>
1138
        <div className="form-group">
1137
        <div className="form-group">
1139
          <label htmlFor="first_name">Contraseña de ingreso</label>
1138
          <label htmlFor="first_name">Contraseña de ingreso</label>
1140
          <input
1139
          <input
1141
            type="password"
1140
            type="password"