Skip to content

Commit 9588a9e

Browse files
authored
Revert "Temp website (#118)"
This reverts commit 1d092bd.
1 parent 1d092bd commit 9588a9e

File tree

470 files changed

+24968
-43379
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

470 files changed

+24968
-43379
lines changed

.DS_Store

-8 KB
Binary file not shown.

.idea/misc.xml

Lines changed: 0 additions & 9 deletions
This file was deleted.

.idea/modules.xml

Lines changed: 0 additions & 8 deletions
This file was deleted.

.idea/vcs.xml

Lines changed: 0 additions & 6 deletions
This file was deleted.

.idea/website-www.codeuino.org.iml

Lines changed: 0 additions & 8 deletions
This file was deleted.

.idea/workspace.xml

Lines changed: 0 additions & 1048 deletions
This file was deleted.

CNAME

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
codeuino.org

Contributing.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# CODEUINO
2+
3+
## Opening an issue
4+
You should usually open an issue in the following situations:
5+
6+
* Report an error you can’t solve yourself
7+
* Discuss a high-level topic or idea (for example, community, vision or policies)
8+
* Propose a new feature or other project idea
9+
* Tips for communicating on issues:
10+
11+
If you see an open issue that you want to tackle, comment on the issue to let people know you’re on it. That way, people are less likely to duplicate your work.
12+
If an issue was opened a while ago, it’s possible that it’s being addressed somewhere else, or has already been resolved, so comment to ask for confirmation before starting work.
13+
If you opened an issue, but figured out the answer later on your own, comment on the issue to let people know, then close the issue. Even documenting that outcome is a contribution to the project.
14+
15+
## Opening a pull request
16+
You should usually open a pull request in the following situations:
17+
18+
* Submit trivial fixes (for example, a typo, a broken link or an obvious error)
19+
* Start work on a contribution that was already asked for, or that you’ve already discussed, in an issue
20+
A pull request doesn’t have to represent finished work. It’s usually better to open a pull request early on, so others can watch or give feedback on your progress. Just mark it as a “WIP” (Work in Progress) in the subject line. You can always add more commits later.
21+
22+
If the project is on GitHub, here’s how to submit a pull request:
23+
24+
* Fork the repository and clone it locally. Connect your local to the original “upstream” repository by adding it as a remote. Pull in changes from “upstream” often so that you stay up to date so that when you submit your pull request, merge conflicts will be less likely. (See more detailed instructions here.)
25+
* Create a branch for your edits.
26+
* Reference any relevant issues or supporting documentation in your PR (for example, “Closes #37.”)
27+
* Include screenshots of the before and after if your changes include differences in HTML/CSS. Drag and drop the images into the body of your pull request.
28+
* Test your changes! Run your changes against any existing tests if they exist and create new ones when needed. Whether tests exist or not, make sure your changes don’t break the existing project.
29+
* Contribute in the style of the project to the best of your abilities. This may mean using indents, semi-colons or comments differently than you would in your own repository, but makes it easier for the maintainer to merge, others to understand and maintain in the future.

LICENSE

Lines changed: 674 additions & 0 deletions
Large diffs are not rendered by default.

Projects.html

Lines changed: 302 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,302 @@
1+
<!DOCTYPE HTML>
2+
3+
<html>
4+
<head>
5+
<meta charset="utf-8">
6+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
7+
<title>Codeuino</title>
8+
<meta name="viewport" content="width=device-width, initial-scale=1">
9+
10+
<!-- Facebook and Twitter integration -->
11+
<meta property="og:title" content=""/>
12+
<meta property="og:image" content=""/>
13+
<meta property="og:url" content=""/>
14+
<meta property="og:site_name" content=""/>
15+
<meta property="og:description" content=""/>
16+
<meta name="twitter:title" content="" />
17+
<meta name="twitter:image" content="" />
18+
<meta name="twitter:url" content="" />
19+
<meta name="twitter:card" content="" />
20+
21+
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,700" rel="stylesheet">
22+
23+
<!-- Favicon-->
24+
<link rel="shortcut icon" href="images/codeunio.jpeg" type="image/x-icon">
25+
<!-- Animate.css -->
26+
<link rel="stylesheet" href="css/animate.css">
27+
<!-- Icomoon Icon Fonts-->
28+
<link rel="stylesheet" href="css/icomoon.css">
29+
<!-- Bootstrap -->
30+
<link rel="stylesheet" href="css/bootstrap.css">
31+
32+
<!-- Magnific Popup -->
33+
<link rel="stylesheet" href="css/magnific-popup.css">
34+
35+
<!-- PopUp CSS-->
36+
<link rel="stylesheet" href="css/donation-popup.css">
37+
38+
<!-- Theme style -->
39+
<link rel="stylesheet" href="css/style.css">
40+
<!-- jQuery -->
41+
<script src="js/jquery.min.js"></script>
42+
<!-- Modernizr JS -->
43+
<script src="js/modernizr-2.6.2.min.js"></script>
44+
<!-- FOR IE9 below -->
45+
<!--[if lt IE 9]>
46+
<script src="js/respond.min.js"></script>
47+
<![endif]-->
48+
49+
<!-- popup script -->
50+
<script>
51+
$(document).ready(function () {
52+
$("#donate-us").click(function () {
53+
$('#myModal').modal('show');
54+
});
55+
});
56+
</script>
57+
58+
</head>
59+
<body>
60+
61+
<div class="fh5co-loader"></div>
62+
63+
<div id="page">
64+
<nav class="fh5co-nav" role="navigation">
65+
<div class="container">
66+
<div class="row">
67+
<div class="col-xs-2 text-left">
68+
<div id="fh5co-logo"><a href="index.html">CODEUINO<span>.</span></a></div>
69+
</div>
70+
<div class="col-xs-10 text-right menu-1">
71+
<ul>
72+
<li><a href="index.html">Home</a></li>
73+
74+
75+
<li class="active"><a href="Projects.html">Project</a></li>
76+
<li><a href="about.html">Team</a></li>
77+
<li><a href="#fh5co-started" id="donate-us">Donate Us</a></li>
78+
<li><a href="http://wiki.codeuino.org/">Wiki</a></li>
79+
<li><a href="https://goo.gl/3pwWMR">Get Involved</a></li>
80+
</ul>
81+
</div>
82+
</div>
83+
84+
</div>
85+
</nav>
86+
87+
<header id="fh5co-header" class="fh5co-cover fh5co-cover-sm" role="banner" style="background-image:url(images/img_bg_1.jpg);" data-stellar-background-ratio="0.5">
88+
<div class="overlay"></div>
89+
<div class="container">
90+
<div class="row">
91+
<div class="col-md-7 text-left">
92+
<div class="display-t">
93+
<div class="display-tc animate-box" data-animate-effect="fadeInUp">
94+
<h1 class="mb30">Our Creative Products</h1>
95+
</div>
96+
</div>
97+
</div>
98+
</div>
99+
</div>
100+
</header>
101+
102+
103+
104+
<div id="fh5co-project">
105+
<div class="container">
106+
107+
108+
<div class="row row-pb-md">
109+
<div class="col-md-8 col-md-offset-2 text-left fh5co-heading animate-box">
110+
<span>Want Some Cool Stuff</span>
111+
<h2>Recent Projects</h2>
112+
<p>Our organisation focus in integration of developers and helping them with their problems and at
113+
same time providing them oppurtunities to interact with people all over world</p>
114+
</div>
115+
</div>
116+
117+
<div class="row">
118+
<div class="col-md-4 col-sm-6 fh5co-project animate-box" data-animate-effect="fadeIn">
119+
<a href="https://github.com/codeuino/Social-Platform-Donut"><img src="images/social.PNG" alt="Screenshot of Social Platform Donut"
120+
class="img-responsive">
121+
<div class="fh5co-copy">
122+
<h3>Donut</h3>
123+
<p>Social Platform </p>
124+
</div>
125+
</a>
126+
</div>
127+
<div class="col-md-4 col-sm-6 fh5co-project animate-box" data-animate-effect="fadeIn">
128+
<a href="https://github.com/codeuino/chat-platform"><img src="images/chat.png" alt="Screenshot of codeuino chat-platform"
129+
class="img-responsive">
130+
<div class="fh5co-copy">
131+
<h3>Chat Platform</h3>
132+
<p>Old way, with our touch</p>
133+
</div>
134+
</a>
135+
</div>
136+
<div class="col-md-4 col-sm-6 fh5co-project animate-box" data-animate-effect="fadeIn">
137+
<a href="https://github.com/codeuino/Certificate-Generator"><img src="images/cop.jpg" alt="Screenshot of Codeuino Certificate-Generator"
138+
class="img-responsive">
139+
<div class="fh5co-copy">
140+
<h3>Certificate Generator</h3>
141+
<p>A token of apprectiation from us</p>
142+
</div>
143+
</a>
144+
</div>
145+
146+
147+
<div class="col-md-12 text-center">
148+
<nav aria-label="Page navigation">
149+
<ul class="pagination">
150+
<li>
151+
<a href="#" aria-label="Previous">
152+
<span aria-hidden="true">&laquo;</span>
153+
</a>
154+
</li>
155+
<li class="active"><a href="#">1</a></li>
156+
<li><a href="#">2</a></li>
157+
<li><a href="#">3</a></li>
158+
<li><a href="#">4</a></li>
159+
<li><a href="#">5</a></li>
160+
<li>
161+
<a href="#" aria-label="Next">
162+
<span aria-hidden="true">&raquo;</span>
163+
</a>
164+
</li>
165+
</ul>
166+
</nav>
167+
</div>
168+
169+
</div>
170+
</div>
171+
172+
</div>
173+
174+
175+
176+
177+
178+
<!--Footer-->
179+
<div id="footer">
180+
<div class="flex-container">
181+
<div class="about">
182+
<h3>CODEUINO</h3>
183+
<p>Codeuino-An Open Source Non-Profit Organisation,founded by Jaskirat Singh an Open Source maniac.
184+
Codeuino develops various Open Source Softwares that tends to benefits all the people around.
185+
The organisation acts as a guiding hand in the process and provides resources and infrastructure.
186+
</p>
187+
<div class="social-buttons">
188+
<ul>
189+
<li class="item"><a href="https://www.facebook.com/codeuino/"><i class="fab fa-facebook-f"></i></a></li>
190+
<li class="item"><a href="https://twitter.com/codeuino"><i class="fab fa-twitter"></i></a></li>
191+
<li class="item"><a href="https://in.linkedin.com/company/codeuino"><i class="fab fa-linkedin-in"></i></a></li>
192+
</ul>
193+
</div>
194+
</div>
195+
<div class="links">
196+
<h3>USEFUL LINKS </h3>
197+
<ul>
198+
<li><a href="https://github.com/codeuino">Github</a></li>
199+
<li><a href="http://codeuino.org/Projects.html">Projects</a></li>
200+
<li><a href="https://github.com/codeuino/codeuino-docs/blob/master/CODE%20OF%20CONDUCT.md">Code of Conduct</a></li>
201+
<li><a href="http://codeuino.org/about.html">About</a></li>
202+
</ul>
203+
</div>
204+
205+
</div>
206+
</div>
207+
</div>
208+
<div class="container">
209+
<!--<h2>Large Modal</h2>-->
210+
<!-- Trigger the modal with a button -->
211+
<!--<button type="button" class="btn btn-info btn-lg" data-toggle="modal" data-target="#myModal">Open Large Modal</button>-->
212+
213+
<!-- Modal -->
214+
<div class="modal fade" id="myModal" role="dialog">
215+
<div class="modal-dialog modal-lg">
216+
<div class="modal-content" style="height: 413px; background: #F0F5F9">
217+
<div class="modal-header">
218+
<button type="button" class="close" data-dismiss="modal">&times;</button>
219+
<!--<h4 class="modal-title">Modal Header</h4>-->
220+
</div>
221+
<div class="modal-body">
222+
<!--POPUP-->
223+
<div class="popup-style" id="popup">
224+
<div class="col1">
225+
<div class="card">
226+
<div class="front">
227+
<div class="type">
228+
<img class="bankid"/>
229+
</div>
230+
<span class="chip"></span>
231+
<span class="card_number">&#x25CF;&#x25CF;&#x25CF;&#x25CF; &#x25CF;&#x25CF;&#x25CF;&#x25CF; &#x25CF;&#x25CF;&#x25CF;&#x25CF; &#x25CF;&#x25CF;&#x25CF;&#x25CF; </span>
232+
<div class="date"><span class="date_value">MM / YYYY</span></div>
233+
<span class="fullname">FULL NAME</span>
234+
</div>
235+
<div class="back">
236+
<div class="magnetic"></div>
237+
<div class="bar"></div>
238+
<span class="seccode">&#x25CF;&#x25CF;&#x25CF;</span>
239+
<span class="chip"></span><span class="disclaimer">This card is property of Random Bank of Random corporation. <br> If found please return to Random Bank of Random corporation - 21968 Paris, Verdi Street, 34 </span>
240+
</div>
241+
</div>
242+
</div>
243+
<div class="col2">
244+
<label>Card Number</label>
245+
<input class="number" type="text" ng-model="ncard" maxlength="19"
246+
onkeypress='return event.charCode >= 48 && event.charCode <= 57'/>
247+
<label>Cardholder name</label>
248+
<input class="inputname" type="text" placeholder=""/>
249+
<label>Expiry date</label>
250+
<input class="expire" type="text" placeholder="MM / YYYY"/>
251+
<div class="row">
252+
<div class="col-md-7">
253+
<label>Security Number</label>
254+
<input class="ccv" type="text" placeholder="CVV" maxlength="3"
255+
onkeypress='return event.charCode >= 48 && event.charCode <= 57'/>
256+
</div>
257+
<div class="col-md-5">
258+
<label id="stick-left">Amount($)</label>
259+
<input class="amount" type="text" maxlength="8"
260+
onkeypress='return event.charCode >= 48 && event.charCode <= 57'/>
261+
</div>
262+
</div>
263+
<button class="buy"><i class="material-icons">lock</i> Pay </button>
264+
</div>
265+
</div>
266+
<!--POPUP END-->
267+
</div>
268+
<!--<div class="modal-footer">-->
269+
<!--<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>-->
270+
<!--</div>-->
271+
</div>
272+
</div>
273+
</div>
274+
</div>
275+
<!-- END POPUP-->
276+
277+
<div class="gototop js-top">
278+
<a href="#" class="js-gotop"><i class="icon-arrow-up"></i></a>
279+
</div>
280+
281+
<!-- jQuery -->
282+
<script src="js/jquery.min.js"></script>
283+
<!-- jQuery Easing -->
284+
<script src="js/jquery.easing.1.3.js"></script>
285+
<!-- Bootstrap -->
286+
<script src="js/bootstrap.min.js"></script>
287+
<!-- Waypoints -->
288+
<script src="js/jquery.waypoints.min.js"></script>
289+
<!-- countTo -->
290+
<script src="js/jquery.countTo.js"></script>
291+
<!-- Magnific Popup -->
292+
<script src="js/jquery.magnific-popup.min.js"></script>
293+
<script src="js/magnific-popup-options.js"></script>
294+
<!-- Stellar -->
295+
<script src="js/jquery.stellar.min.js"></script>
296+
<!-- Donation popup -->
297+
<script src="js/donation-popup.js"></script>
298+
<!-- Main -->
299+
<script src="js/main.js"></script>
300+
301+
</body>
302+
</html>

0 commit comments

Comments
 (0)