| Server IP : 209.209.40.120 / Your IP : 216.73.217.112 Web Server : Microsoft-IIS/10.0 System : Windows NT NEWWWW 10.0 build 17763 (Windows Server 2019) i586 User : NEWWWW$ ( 0) PHP Version : 8.3.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /software/Services/citygists/pages/ |
Upload File : |
<template>
<f7-page name="settings">
<f7-navbar title="Settings"></f7-navbar>
<f7-block-title>Form Example</f7-block-title>
<f7-list no-hairlines-md>
<f7-list-input
label="Name"
type="text"
placeholder="Your name"
></f7-list-input>
<f7-list-input
label="E-mail"
type="email"
placeholder="E-mail"
></f7-list-input>
<f7-list-input
label="URL"
type="url"
placeholder="URL"
></f7-list-input>
<f7-list-input
label="Password"
type="password"
placeholder="Password"
></f7-list-input>
<f7-list-input
label="Phone"
type="tel"
placeholder="Phone"
></f7-list-input>
<f7-list-input
label="Gender"
type="select"
>
<option>Male</option>
<option>Female</option>
</f7-list-input>
<f7-list-input
label="Birth date"
type="date"
placeholder="Birth day"
defaultValue="2014-04-30"
></f7-list-input>
<f7-list-item
title="Toggle"
>
<f7-toggle slot="after"></f7-toggle>
</f7-list-item>
<f7-list-input
label="Range"
:input="false"
>
<f7-range slot="input" :value="50" :min="0" :max="100" :step="1"></f7-range>
</f7-list-input>
<f7-list-input
type="textarea"
label="Textarea"
placeholder="Bio"
></f7-list-input>
<f7-list-input
type="textarea"
label="Resizable"
placeholder="Bio"
resizable
></f7-list-input>
</f7-list>
<f7-block-title>Buttons</f7-block-title>
<f7-block strong>
<f7-row tag="p">
<f7-button class="col">Button</f7-button>
<f7-button class="col" fill>Fill</f7-button>
</f7-row>
<f7-row tag="p">
<f7-button class="col" raised>Raised</f7-button>
<f7-button class="col" raised fill>Raised Fill</f7-button>
</f7-row>
<f7-row tag="p">
<f7-button class="col" round>Round</f7-button>
<f7-button class="col" round fill>Round Fill</f7-button>
</f7-row>
<f7-row tag="p">
<f7-button class="col" outline>Outline</f7-button>
<f7-button class="col" round outline>Outline Round</f7-button>
</f7-row>
<f7-row tag="p">
<f7-button class="col" small outline>Small</f7-button>
<f7-button class="col" small round outline>Small Round</f7-button>
</f7-row>
<f7-row tag="p">
<f7-button class="col" small fill>Small</f7-button>
<f7-button class="col" small round fill>Small Round</f7-button>
</f7-row>
<f7-row tag="p">
<f7-button class="col" large raised>Large</f7-button>
<f7-button class="col" large fill raised>Large Fill</f7-button>
</f7-row>
<f7-row tag="p">
<f7-button class="col" large fill raised color="red">Large Red</f7-button>
<f7-button class="col" large fill raised color="green">Large Green</f7-button>
</f7-row>
</f7-block>
<f7-block-title>Checkbox group</f7-block-title>
<f7-list>
<f7-list-item
checkbox
name="my-checkbox"
value="Books"
title="Books"
></f7-list-item>
<f7-list-item
checkbox
name="my-checkbox"
value="Movies"
title="Movies"
></f7-list-item>
<f7-list-item
checkbox
name="my-checkbox"
value="Food"
title="Food"
></f7-list-item>
</f7-list>
<f7-block-title>Radio buttons group</f7-block-title>
<f7-list>
<f7-list-item
radio
name="radio"
value="Books"
title="Books"
></f7-list-item>
<f7-list-item
radio
name="radio"
value="Movies"
title="Movies"
></f7-list-item>
<f7-list-item
radio
name="radio"
value="Food"
title="Food"
></f7-list-item>
</f7-list>
</f7-page>
</template>