Skip to content

Commit dd814d8

Browse files
author
nirajr1992
committed
The Html & Css code is now visible to client. Js code remaining.
1 parent 40f8fcc commit dd814d8

File tree

1 file changed

+53
-0
lines changed

1 file changed

+53
-0
lines changed

index.html

+53
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,59 @@ <h4 id="upload-profile-error" class="text-danger"></h4>
7373
</form>
7474

7575
</div>
76+
77+
<div class="col-sm-4 col-md-4 col-xs-12">
78+
<div class="block-heading">
79+
<h3>html code</h3>
80+
</div>
81+
<a href="#" class="btn-absolute btn-outline">Copy</a>
82+
<div class="code-section">
83+
<pre>
84+
&lt;form action="#" method="post" id="demo1-form"&gt;<br />
85+
&lt;label class="btn profile" for="my-profile-file-selector"&gt;<br />
86+
&lt;input id="my-profile-file-selector" type="file"&gt;Upload<br />
87+
&lt;/label&gt;<br />
88+
&lt;span class='' id="upload-profile-file-info"&gt;&lt;/span&gt;<br />
89+
&lt;h4 id="upload-profile-error" class="text-danger"&gt;&lt;/h4&gt;<br />
90+
&lt;img id="upload-profile-image" src="" class="img-responsive" alt=""&gt;<br />
91+
&lt;button class="btn" id="remove-profile-btn"&gt;Remove&lt;/button&gt;<br />
92+
&lt;/form&gt;
93+
</pre>
94+
</div>
95+
<div class="css-section">
96+
<div class="block-heading">
97+
<h3>css code</h3>
98+
</div>
99+
<a href="#" class="btn-absolute btn-outline css-copy">Copy</a>
100+
<div class="code-section css-code">
101+
<pre>
102+
.btn{
103+
padding: 8px 34px;
104+
background-color: #9c27b0; color: #fff;
105+
font-size: 16px; border-radius: 0;
106+
}
107+
.btn:hover{
108+
color: #fff !important;
109+
}
110+
#remove-profile-btn{
111+
display: none;
112+
margin-top: 12px;
113+
}
114+
#my-profile-file-selector{
115+
display: none;
116+
}
117+
</pre>
118+
</div>
119+
</div>
120+
</div>
121+
122+
<div class="col-sm-4 col-md-4 col-xs-12">
123+
<div class="block-heading">
124+
<h3>JavaScript code</h3>
125+
</div>
126+
<a href="#" class="btn-absolute btn-outline">Copy</a>
127+
</div>
128+
76129
</div>
77130

78131
</div>

0 commit comments

Comments
 (0)