Doubt how to create a layout for editing information

0

I am developing an internal tool to control travel expenses of employees, but I am in great doubt.

I'll explain the steps I've taken so far.

- > first the person enters the portal and requests a trip with an outward date, return date, destination and some more information.

- > the superior of this person receives a notification email that the same is requesting a trip, he can authorize or deny the trip.

- > assuming that the superior authorized the trip, the employee will receive a new email notifying him that his trip has been authorized.

- > this time the collaborator has already made the trip and comes to account for the trip he has made.

My question is here

- > the trip is divided by days, day of trip to the day of return EX: 01/01/2018 until 03/01/2018, and I have to fill in the travel information as per the attached image

What better way to work with this layout in html? Does anyone know of any tools or can give me an idea of how to proceed. Thank you all.

This is an image of the worksheet that the staff uses today

    
asked by anonymous 04.01.2018 / 11:03

2 answers

0

On layout you can use tables with labels and inputs normally, eg:

            <table border="1">
                <tr>
                    <td>
                        <label>Horário de entrada</label>
                    </td>
                    <td>
                        <input type="text" name="entrada">
                    </td>
                </tr>
                <tr>
                    <td>
                        <label>Horário de saída</label>
                    </td>
                    <td>
                        <input type="text" name="saida">
                    </td>
                </tr>
            </table>

It will look like excell, which I think is what you want

    
08.01.2018 / 21:40
0

I have a problem with a basic form but I used a lib called angular-steps where it works with tabs

Follow the picture of how it was.

    
10.01.2018 / 16:13