Filippo Bertilotti
9 days ago de2853db51edef5c7c9eefdfe33d91f6e6fb1691
resources/views/vodafone_fake_sso/show-write-view.blade.php
@@ -36,14 +36,19 @@
    </style>
</head>
<body>
    <div class="wrapper py-3">
        <section class="border border-dark rounded p-2 my-2">
            <h2 class="text-danger">
                CAMPI DA INSERIRE NEL DATABASE:
            </h2>
            <div class="container">
    <form id="write-form" method="post">
        @csrf
                    <div class="row row-cols-2">
        <label for="products-select">
            Products
        </label>
        <select name="products-select" id="products-select" multiple>
                        <select name="products_select[]" id="products_select" multiple>
            @foreach ($productsList as $product)
                <option value="{{ $product["id"] }}">
                    {{ $product["id"] }}: {{ $product["Name"] }}
@@ -54,31 +59,37 @@
       
        profile_user_name
        <input type="string" name="profile_user_name" id="profile_user_name" value="NAME FAKESSO | DUAL TM9 RIC 5.49275"> <br>
                        <input type="string" name="profile_user_name" id="profile_user_name" value="NAME FAKESSO | DUAL TM9 RIC 5.49275">
        Custcode
        <input type="string" name="Custcode" id="Custcode" value="5.49275"> <br>
                        <input type="string" name="Custcode" id="Custcode" value="5.49275">
        EmailAddress
        <input type="string" name="EmailAddress" id="EmailAddress" value="pippo@vola.it"> <br>
                        <input type="string" name="EmailAddress" id="EmailAddress" value="pippo@vola.it">
        Name
        <input type="string" name="Name" id="Name" value="Paola"> <br>
                        <input type="string" name="Name" id="Name" value="Paola">
        ProfileIdentifier
        <input type="string" name="ProfileIdentifier" id="ProfileIdentifier" value="BUSINESS_EMPLOYEE"> <br>
                        <input type="string" name="ProfileIdentifier" id="ProfileIdentifier" value="BUSINESS_EMPLOYEE">
        Surname
        <input type="string" name="Surname" id="Surname" value="Sandrelli"> <br>
                        <input type="string" name="Surname" id="Surname" value="Sandrelli">
        Username
        <input type="string" name="Username" id="Username" value="FAKE_SSO_"> <br>
                        <input type="string" name="Username" id="Username" value="FAKE_SSO_">
        IdPiano
        <input type="string" name="IdPiano" id="IdPiano" value="IdPiano"> <br>
                        <input type="string" name="IdPiano" id="IdPiano" value="IdPiano">
        OMProductId
        <input type="string" name="OMProductId" id="OMProductId" value="OMProductId"> <br>
                        <input type="string" name="OMProductId" id="OMProductId" value="OMProductId">
        tmCode
        <input type="string" name="tmCode" id="tmCode" value="tmCode"> <br>
                        <input type="string" name="tmCode" id="tmCode" value="tmCode">
        sim_1
        <input type="string" name="sim_1" id="sim_1" value="3464232371"> <br>
                        <input type="string" name="sim_1" id="sim_1" value="3464232371">
                    </div>
        <button type="submit" name="database" class="btn btn-sm btn-primary">
        INSERT DATABASE
        </button>
    </form>
            </div>
        </section>
    </div>
</body>
</html>