www.ente.ch Open in urlscan Pro
91.216.40.200  Public Scan

Submitted URL: https://ente.ch/
Effective URL: https://www.ente.ch/
Submission: On March 02 via api from CH — Scanned from CH

Form analysis 2 forms found in the DOM

Name: Form

<form name="Form" id="form" novalidate="" class="ng-pristine ng-invalid ng-invalid-required">
  <div id="add_entry_form" class="swMain">
    <ul style="margin-bottom:0;">
      <li>
        <a href="" ng-class="{'selected' : currentStep >= 1, 'done' : currentStep > 1}" class="selected">
                                            <div class="stepNumber">
                                                1
                                            </div>
                                        </a>
      </li>
      <li>
        <a href="" ng-class="{'selected' : currentStep >= 2, 'done' : currentStep > 2}">
                                            <div class="stepNumber">
                                                2
                                            </div>
                                        </a>
      </li>
      <li>
        <a href="" ng-class="{'selected' : currentStep >= 3, 'done' : currentStep > 3}">
                                            <div class="stepNumber">
                                                3
                                            </div>
                                        </a>
      </li>
    </ul>
    <div id="step-1" ng-show="currentStep == 1" class="">
      <div class="row">
        <div class="col-md-12">
          <div class="row">
            <div class="col-xs-12">
              <div class="form-group" ng-class="{'has-error':Form.title.$dirty &amp;&amp; Form.title.$invalid, 'has-success':Form.title.$valid}">
                <label> Titel <span class="symbol required"></span> </label>
                <input type="text" placeholder="Titel" class="form-control ng-pristine ng-untouched ng-empty ng-invalid ng-invalid-required" name="title" ng-model="entry.title" ng-required="currentStep == 1" required="required">
                <!-- ngIf: Form.title.$dirty && Form.title.$invalid -->
              </div>
            </div>
          </div>
          <div class="row">
            <div class="col-md-7 col-xs-12">
              <div class="form-group" ng-class="{'has-error':Form.type.$dirty &amp;&amp; Form.type.$invalid, 'has-success':Form.type.$valid}">
                <label> Kategorie <span class="symbol required"></span> </label>
                <span class="clip-select">
                  <select class="form-control ng-pristine ng-untouched ng-empty ng-invalid ng-invalid-required" name="type" ng-model="entry.type" ng-required="currentStep == 1" required="required">
                    <option value="" selected="selected">&nbsp;</option>
                    <option value="3">Immobilien</option>
                    <option value="2">Handel</option>
                    <option value="1">Jobs</option>
                  </select>
                  <!-- ngIf: Form.type.$dirty && Form.type.$invalid -->
                </span>
              </div>
            </div>
            <div class="col-md-5 col-xs-12">
              <div class="form-group" ng-class="{'has-error':Form.price.$dirty &amp;&amp; Form.price.$invalid, 'has-success':Form.price.$valid}">
                <label> Preis <span class="symbol required"></span> </label>
                <input type="number" placeholder="Preis" class="form-control ng-pristine ng-untouched ng-empty ng-invalid ng-invalid-required" name="price" ng-model="entry.price" ng-required="currentStep == 1" required="required">
                <!-- ngIf: Form.price.$dirty && Form.price.$invalid -->
              </div>
            </div>
          </div>
          <legend> Beschreibung </legend>
          <div class="row">
            <div class="col-md-12">
              <div class="form-group" ng-class="{'has-error':Form.description.$dirty &amp;&amp; Form.description.$invalid, 'has-success':Form.description.$valid}">
                <textarea placeholder="Beschreibung" style="min-height:150px;" class="form-control ng-pristine ng-untouched ng-empty ng-invalid ng-invalid-required" name="description" ng-model="entry.description" ng-required="currentStep == 1"
                  required="required"></textarea>
                <!-- ngIf: Form.description.$dirty && Form.description.$invalid -->
              </div>
            </div>
          </div>
          <div class="form-group">
            <button class="btn btn-primary btn-o next-step btn-wide pull-right" ng-click="form.next(Form)"> weiter <i class="fa fa-arrow-circle-right"></i>
            </button>
          </div>
        </div>
      </div>
    </div>
    <div id="step-2" ng-show="currentStep == 2" class="ng-hide">
      <div class="row">
        <div class="col-md-12">
          <legend> Standort </legend>
          <div class="row">
            <div class="col-md-12">
              <div class="form-group has-success" ng-class="{'has-error':Form.zipcode.$dirty &amp;&amp; Form.zipcode.$invalid, 'has-success':Form.zipcode.$valid}">
                <label class="control-label"> PLZ <span class="symbol required"></span> </label>
                <input type="text" placeholder="PLZ" class="form-control ng-pristine ng-untouched ng-empty ng-valid ng-valid-required" name="zipcode" ng-model="entry.zipcode" ng-required="currentStep == 2">
                <!-- ngIf: Form.zipcode.$dirty && Form.zipcode.$error.required -->
                <!-- ngIf: Form.zipcode.$error.zipcode -->
              </div>
            </div>
            <div class="col-md-12">
              <div class="form-group has-success" ng-class="{'has-error':Form.city.$dirty &amp;&amp; Form.city.$invalid, 'has-success':Form.city.$valid}">
                <label class="control-label"> Ort <span class="symbol required"></span> </label>
                <input type="text" placeholder="Ort" class="form-control ng-pristine ng-untouched ng-empty ng-valid ng-valid-required" name="city" ng-model="entry.city" ng-required="currentStep == 2">
                <!-- ngIf: Form.city.$dirty && Form.city.$error.required -->
                <!-- ngIf: Form.city.$error.city -->
              </div>
            </div>
          </div>
          <div class="row">
            <div class="col-md-12">
              <div class="form-group has-success" ng-class="{'has-error':Form.street.$dirty &amp;&amp; Form.street.$invalid, 'has-success':Form.street.$valid}">
                <label class="control-label"> Strasse <span class="symbol required"></span> </label>
                <input type="text" placeholder="Strasse" class="form-control ng-pristine ng-untouched ng-empty ng-valid ng-valid-required" name="street" ng-model="entry.street" ng-required="currentStep == 2">
                <!-- ngIf: Form.street.$dirty && Form.street.$error.required -->
                <!-- ngIf: Form.street.$error.street -->
              </div>
            </div>
          </div>
          <div class="form-group">
            <button class="btn btn-primary btn-o back-step btn-small pull-left" ng-click="form.prev(Form)">
              <i class="fa fa-circle-arrow-left"></i> zurück </button>
            <button class="btn btn-primary btn-o next-step btn-small pull-right" ng-click="form.next(Form)"> weiter <i class="fa fa-arrow-circle-right"></i>
            </button>
          </div>
        </div>
      </div>
    </div>
    <div id="step-3" ng-show="currentStep == 3" class="ng-hide">
      <div nv-file-drop="" uploader="uploaderImages">
        <div class="row">
          <div class="col-md-12">
            <legend> Bilder auswählen (max. 6 Bilder) </legend>
            <span class="btn btn-primary btn-o btn-file" style="width:100%; margin-bottom:20px;"> Durchsuchen <input type="file" nv-file-select="" uploader="uploaderImages" accept="image/x-png,image/gif,image/jpeg" multiple="">
            </span>
            <!-- ngRepeat: item in uploaderImages.queue -->
          </div>
          <!-- ngIf: uploaderImages.progress > 0 -->
        </div>
      </div>
      <div class="row">
        <div class="col-md-12">
          <div class="form-group">
            <button class="btn btn-primary btn-o back-step btn-small pull-left" ng-click="form.prev(Form)">
              <i class="fa fa-circle-arrow-left"></i> zurück </button>
            <!-- ngIf: uploaderImages.getNotUploadedItems().length -->
          </div>
        </div>
      </div>
    </div>
  </div>
</form>

<form role="search" class="main-search ng-pristine ng-valid">
  <input type="text" placeholder="Suchtext" ng-model="mainSearch.search" class="form-control mainsearch_search ng-pristine ng-untouched ng-valid ng-empty">
  <input type="text" placeholder="Min Preis" ng-model="mainSearch.minprice" class="form-control mainsearch_minprice ng-pristine ng-untouched ng-valid ng-empty">
  <input type="text" placeholder="Max Preis" ng-model="mainSearch.maxprice" class="form-control mainsearch_maxprice ng-pristine ng-untouched ng-valid ng-empty">
  <button class="btn search-button" type="submit" ng-click="submitMainSearch(mainSearch)">
    <i class="fa fa-search"></i>
  </button>
  <span ng-click="zoomIn()" class="zoomcontrol"><i class="fa fa-plus"></i></span>
  <span ng-click="zoomOut()" class="zoomcontrol"><i class="fa fa-minus"></i></span>
</form>

Text Content

   
 * Log In
   
 * Karte
 * Mein Profil
 * Meine Inserate
 * Inserat erstellen
 *  * 1
    * 2
    * 3
   
   Titel
   Kategorie   Immobilien Handel Jobs
   Preis
   Beschreibung
   
   weiter
   Standort
   PLZ
   Ort
   Strasse
   zurück weiter
   Bilder auswählen (max. 6 Bilder) Durchsuchen
   zurück

Live Ticker
   


 * BALKONKRAFTWERK 2 SOLARPANELS (800W) INKL. 6 ...
   
   SFr. 4'999.00 4543 Deitingen
   
   

 * 
 * AGB
 * Impressum
 * 


 * DIE LOKALSTE GRATIS INSERATE & KLEINANZEIGE PLATTFORM DER SCHWEIZ

 * D
   Dashboard
 * UI
   UI Elements
   * Elements
   * Buttons
   * Link Effects
   * Icons
     * Font Awesome Icons
     * Linear Icons
   * Modals
   * Toggle
   * Tabs & Accordions
   * Panels
   * Notifications
   * TreeView
   * Media
   * Nestable List
   * Typography
 * C
   Components
   *  * Tables
        * Basic Tables
        * Responsive Tables
        * Dynamic Tables
        * ngTable
     
      * Forms
        * Form Elements
        * X-Editable Elements
        * Text Editor
        * Form Wizard
        * Form Validation
        * Image Cropping
        * Multiple File Upload
     
      * Login
        * Login Form
        * Registration Form
        * Forgot Password Form
        * Lock Screen
     
      * Pages
        * User Profile
        * Invoice
        * Timeline
        * Calendar
        * Messages
        * Starter Page
 * PK
   Page Kits
   * Utilities
   * Search Results
   * Error 404
   * Error 500
   * Pricing Table
   * 4 Level Menu
   * Item 1
     * Sample Link 1
       * Link 1
       * Link 2
       * Link 3
     * Sample Link 2
       * Link 1
       * Link 2
       * Link 3
     * Sample Link 3
       * Link 1
       * Link 2
       * Link 3
   * Item 2
     * Sample Link 1
       * Link 1
       * Link 2
       * Link 3
     * Sample Link 2
       * Link 1
       * Link 2
       * Link 3
     * Sample Link 3
       * Link 1
       * Link 2
       * Link 3
   * Utilities
   * Maps
   * Charts

 * Peter Clark
   * My Profile
   * My Calendar
   * My Messages
   * Lock Screen
   * 
   * Log Out



←Nach links→Nach rechts↑Nach oben↓Nach unten+Heranzoomen-HerauszoomenPos1Um 75 %
nach linksEndeUm 75 % nach rechtsBild aufUm 75 % nach obenBild abUm 75 % nach
unten

Zum Verschieben drückst du die Pfeiltasten entsprechend.



















Kurzbefehle
KartendatenKartendaten ©2024 GeoBasis-DE/BKG (©2009), Google
Kartendaten ©2024 GeoBasis-DE/BKG (©2009), Google

20 km 

Klicken, um zwischen metrischen und angloamerikanischen Maßeinheiten zu wechseln
Nutzungsbedingungen
Fehler bei Google Maps melden

© 2024 ente.ch
Immobilien
Jobs
Handel
NeusteÄltesteTeuersteGünstigste
   


 * BALKONKRAFTWERK 2 SOLARPANELS (800W) INKL. 6 ...
   
   SFr. 4'999.00
   30/10/23 - 4543 Deitingen
   
   1x ECOFLOW Delta Max 2000 (2016 Wh) Powerstation 2x EcoFlow Delta MAX Smart
   Ext...