| 123456789101112131415161718192021222324252627282930313233 |
- <?php
- include('_inc/_header.php');
- ?>
- <h1>Zu welchem Produkt benötigen Sie Hilfe?</h1>
- <div class="row">
- <div class="<?php echo $GLOBALS['offsetClass'] ?>">
- <form>
- <div class="form-group">
- <label class="text-center font-weight-bold d-block" for="ch-ggs-web-suite-number">Produktname, EAN-Code, UN-Nr., CAS-Nr.</label>
- <input id="ch-ggs-web-suite-number" class="form-control" type="text" />
- </div>
-
- <div class="form-group mt-5 mb-5">
- <label for="ch-ggs-web-suite-safety-sheet" class="text-center text-muted font-weight-bold d-block">Oder laden Sie ein Sicherheitsdatenblatt hoch</label>
- <input type="file" class="form-control-file form-control ch-ggs-web-suite-file-input-box" id="ch-ggs-web-suite-safety-sheet">
- </div>
- <div class="row">
- <div class="col-md-8 text-muted small align-self-center">
- * Lorem ipsum dolor sit amet, consectetuer adipiscing elit.
- </div>
- <div class="col-md-4">
- <a href="step1.php" class="btn w-100 btn-iconed btn-iconed-primary">suchen<i aria-hidden="true" class="btn-icon ifc ifc-arrow-right"></i></a>
- </div>
- </div>
- </form>
- </div>
- </div>
-
-
- <?php include('_inc/_footer.php') ?>
|