Commit e5b86009 by Luciano Barletta

readme

1 parent d8870acc
Showing 1 changed file with 30 additions and 0 deletions
# Generador de Formularios
Servicio Web de generación de formularios a partir de un JSON.
## <myserver>/
En root se encuentra el controlador que toma el JSON y devuelve la página. El formato del JSON es el siguiente:
JSON = {
'title' : "Título del Formulario",
'color' : "Color preferido",
'tabs' : \[Tabs]
}
Donde cada Tab es de la forma:
Tab = {
'title' : "Título del Tab",
'fields' : \[Campos]
}
Donde cada Campo es de la forma:
Campo = {
'title' : "Título del Campo",
'type' : "El tipo de input",
'placeholder' : "Texto de ejemplo del input",
'required' : True|False,
'options' : \["Opción1","Opción2"...]
}
\ No newline at end of file \ No newline at end of file
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!