|
|
@@ -10,7 +10,8 @@
|
|
|
<title>Document</title>
|
|
|
</head>
|
|
|
|
|
|
-<body class="body--">
|
|
|
+<body class="body-- debug">
|
|
|
+ <h1>Full-page form</h1>
|
|
|
<form class="form form--full-page" action="#" method="post">
|
|
|
<h1 class="form__title">Ajouter un nouveau lien</h1>
|
|
|
<div class="form__field">
|
|
|
@@ -57,6 +58,32 @@
|
|
|
</div>
|
|
|
<button class="form__submit button button-success" type="submit">Go</button>
|
|
|
</form>
|
|
|
+
|
|
|
+ <h1>Inline forms</h1>
|
|
|
+ <form class="form form--horizontal" action="#" method="post">
|
|
|
+ <div class="form__field">
|
|
|
+ <div class="field" id="input-text">
|
|
|
+ <label class="field__label" for="text">Text</label>
|
|
|
+ <input class="field__input input" type="text" name="text" label="Text">
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <button class="form__submit button button-success" type="submit">Go</button>
|
|
|
+ </form>
|
|
|
+
|
|
|
+ <form class="form form--horizontal" action="#" method="post">
|
|
|
+ <div class="form__field">
|
|
|
+ <div class="field" id="input-select">
|
|
|
+ <label class="field__label" for="select">Select</label>
|
|
|
+ <select class="field__input select" id="select" name="select">
|
|
|
+ <option class="select__option" value="option-1">Option 1</option>
|
|
|
+ <option class="select__option" value="option-2">Option 2</option>
|
|
|
+ <option class="select__option" value="option-3">Option 3</option>
|
|
|
+ </select>
|
|
|
+ <p class="field__error-help-msg"></p>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <button class="form__submit button button-success" type="submit">Go</button>
|
|
|
+ </form>
|
|
|
</body>
|
|
|
|
|
|
</html>
|