Skip to content

Commit 352175a

Browse files
committed
added sample text to form
1 parent b8443e7 commit 352175a

File tree

3 files changed

+17
-14
lines changed

3 files changed

+17
-14
lines changed

src/_includes/components/codepens/group-spec.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -65,15 +65,15 @@
6565
<h3> Sample Group call</h3>
6666
<div class="sample-form">
6767
<label for="name">Name:</label>
68-
<input type="text" id="name">
68+
<input type="text" id="name" value="Rock and Roll Hall of Fame Inductees">
6969
<label for="industry">Title:</label>
70-
<input type="text" id="industry">
70+
<input type="text" id="industry" value="Music">
7171
<label for="employees">Employees:</label>
72-
<input type="text" id="employees">
72+
<input type="text" id="employees" value="365">
7373
<label for="plan">Plan:</label>
74-
<input type="text" id="plan">
74+
<input type="text" id="plan" value="Premium">
7575
<label for="totalBilled">Total Billed:</label>
76-
<input type="text" id="totalBilled">
76+
<input type="text" id="totalBilled" value="202,000">
7777
<input type="submit" class="button button-hollow" id="submit" onclick="showMessage(); showOutput()"
7878
value="See a sample group call">
7979
</div>

src/_includes/components/codepens/identify-spec.html

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -74,23 +74,23 @@
7474
<h4> Sample Identify </h4>
7575
<div class="sample-form">
7676
<label for="name">Name:</label>
77-
<input type="text" id="name">
77+
<input type="text" id="name" value="Dolly Parton">
7878
<label for="email">Email:</label>
79-
<input type="text" id="email">
79+
<input type="text" id="email" value="[email protected]">
8080
<label for="plan">Plan:</label>
81-
<input type="text" id="plan">
81+
<input type="text" id="plan" value="Premium">
8282
<label for="logins">Logins:</label>
83-
<input type="text" id="logins">
83+
<input type="text" id="logins" value="2">
8484
<label for="street">Street:</label>
85-
<input type="text" id="street">
85+
<input type="text" id="street" value="P.O. Box 150307">
8686
<label for="city">City:</label>
87-
<input type="text" id="city">
87+
<input type="text" id="city" value="Nashville">
8888
<label for="state">State:</label>
89-
<input type="text" id="state">
89+
<input type="text" id="state" value="TN">
9090
<label for="postcode">Zip Code:</label>
91-
<input type="text" id="postcode">
91+
<input type="text" id="postcode" value="37215-0307">
9292
<label for="country">Country:</label>
93-
<input type="text" id="country">
93+
<input type="text" id="country" value="USA">
9494
<input type="submit" class="button button-hollow" id="submit" onclick="showMessage(); showOutput()" value="See a sample identify call">
9595
</div>
9696
</div>

src/_sass/components/_sample-form.scss

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,13 +38,16 @@
3838

3939
input {
4040
grid-column: 2 / 3;
41+
color: #696f8c;
4142
}
43+
4244
select, input {
4345
font-size: 14px;
4446
}
4547

4648
input[type=submit]{
4749
grid-column: 1 / 3;
50+
color: #474d66;
4851
}
4952
}
5053

0 commit comments

Comments
 (0)