How to use the css/components/form.formRow function in css

To help you get started, we’ve selected a few css examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github kucrut / ttrss-reader / app / components / SubscribeForm.jsx View on Github external
render() {
		return (
			<form>
				

				{ this.renderMessage() }

				<div>
					<label>Feed URL</label>
					{ this.renderUrlField() }
				</div>
				<div>
					<label>Category</label>
					{ this.renderCategories() }
				</div>
				<div>
					{ this.renderButton() }
				</div>

				
			</form>
github kucrut / ttrss-reader / app / components / LoginForm.jsx View on Github external
render() {
		const { user, password, url } = this.state;

		return (
			<form>
				<h1> Tiny Tiny RSS Reader</h1>

				<div>
					<label>Username</label>
					<input required="" value="{" name="user" type="text" id="login-user">
				</div>
				<div>
					<label>Password</label>
					</div></form>
github kucrut / ttrss-reader / app / components / SettingsForm.jsx View on Github external
modeAttrs = {};
		}

		if ( noPagination ) {
			noPaginationType = 'toggle-on';
			noPaginationAttrs = { checked: 'checked' };
		} else {
			noPaginationType = 'toggle-off';
			noPaginationAttrs = {};
		}

		return (
			<form>
				

				<div>
					<label>Limit</label>
					<input value="{" required="" max="200" min="1" name="limit" type="number" id="s-limit">
					<label>
						<small>Number of articles to fetch.</small>
					</label>
				</div>
				<div></div></form>