Skip to content
This repository has been archived by the owner on Jan 16, 2023. It is now read-only.

Commit

Permalink
[TASK]: Modify the email confirmation page
Browse files Browse the repository at this point in the history
  • Loading branch information
sandipbhuyan committed Mar 6, 2018
1 parent 16fd7b3 commit e78341c
Show file tree
Hide file tree
Showing 6 changed files with 367 additions and 0 deletions.
@@ -0,0 +1,97 @@
{% extends "@FOSUser/layout.html.twig" %}

{% trans_default_domain 'FOSUserBundle' %}

{% block fos_user_content %}
<div class="container marketing">
<div class="intro">
<h1>Welcome {{ user.username }}</h1>
<p>your account is now activated. You can now take a ride of librecores</p>
<p>LibreCores is your gateway to free and open source digital designs and other components that you can use and re-use in your digital designs.
Towards this goal, LibreCores provides you</p>
<ul>
<li>a comprehensive and easy directory of digital design components ("IP Cores"),</li>
<li>means to assess the quality of those components, and</li>
<li>documentation to learn more about the use and contribution to free and open source digital designs.</li>
</ul>
<h4>Basic Features</h4>
<p>Some of the most important features we are working on and that will be added in the near future are:</p>
</div>
<hr class="featurette-divider">
<div class="row featurette">
<div class="col-md-7">
<h2 class="featurette-heading">Connect <span class="text-muted">and Engage</span></h2>
<p class="lead">You're not alone.
Meet other developers, engage and tackle your challenges together.
Join the mailing list, hop on to IRC, or read blogs.
<a class="librecores-home-showcase-btn"
href="{{ path('librecores_site_page', {'page': 'community-hub'}) }}">
» Community Hub
</a>
</p>

</div>
<div class="col-md-5">
<a href="{{ path('librecores_site_page', {'page': 'community-hub'}) }}">
<img class="featurette-image img-responsive center-block" src="{{ asset('img/chat.svg') }}" alt="engage">
</a>
</div>
</div>
<hr class="featurette-divider">
<div class="row featurette">
<div class="col-md-7 col-md-push-5">
<h2 class="featurette-heading">Code <span class="text-muted">and Share</span></h2>
<p class="lead">Express your ideas in code.
Create new digital hardware designs and improve existing ones.
Open them up for the world to see.
<a class="librecores-home-showcase-btn"
href="{{ path('librecores_project_repo_project_new') }}">
» Add a project
</a>
</p>
</div>
<div class="col-md-5 col-md-pull-7">
<a href="{{ path('librecores_project_repo_project_new') }}">
<img class="featurette-image img-responsive center-block" src="{{ asset('img/coding.svg') }}" alt="code">
</a>

</div>
</div>
<hr class="featurette-divider">
<div class="row featurette">
<div class="col-md-7">
<h2 class="featurette-heading">Learn <span class="text-muted">and Implement</span></h2>
<p class="lead">Get started with VHDL, Verilog and other languages. Find out what tools you can use. Learn which licenses are best for your project.
<a class="librecores-home-showcase-btn"
href="{{ path('librecores_site_page', {'page': 'docs'}) }}">
» Read the docs
</a>
</p>
</div>
<div class="col-md-5">
<a href="{{ path('librecores_site_page', {'page': 'docs'}) }}">
<img class="featurette-image img-responsive center-block" src="{{ asset('img/open-book.svg') }}" alt="share">
</a>
</div>
</div>
<hr class="featurette-divider">
<div class="row featurette">
<div class="col-md-7 col-md-push-5">
<h2 class="featurette-heading">Reuse <span class="text-muted">and Improve</span></h2>
<p class="lead">Express your ideas in code.
Create new digital hardware designs and improve existing ones.
Open them up for the world to see.
<a class="librecores-home-showcase-btn"
href="{{ path('librecores_project_repo_project_list') }}">
» Browse projects
</a>
</p>
</div>
<div class="col-md-5 col-md-pull-7">
<a href="{{ path('librecores_project_repo_project_list') }}">
<img class="featurette-image img-responsive center-block" src="{{ asset('img/reuse.svg') }}" alt="code">
</a>
</div>
</div>
</div><!-- /.container -->
{% endblock fos_user_content %}
40 changes: 40 additions & 0 deletions site/web/assets/css/librecores.css
Expand Up @@ -492,3 +492,43 @@ h1 a:hover, h1 a:active {
.bootstrap-select.btn-group .dropdown-menu {
z-index: 1050; /* to over-ride navbar z-index*/
}


/* MARKETING CONTENT
-------------------------------------------------- */

/* Center align the text within the three columns below the carousel */
.marketing .col-lg-4 {
margin-bottom: 20px;
text-align: center;
}
.marketing h2 {
font-weight: normal;
}
.marketing .col-lg-4 p {
margin-right: 10px;
margin-left: 10px;
}
/* Featurettes
------------------------- */

.featurette-divider {
margin: 80px 0; /* Space out the Bootstrap <hr> more */
}

/* Thin out the marketing headings */
.featurette-heading {
font-weight: 300;
line-height: 1;
letter-spacing: -1px;
}

.intro h1 {
color: #37a7a2;
font-size: 50px;
padding-bottom: 0;
}

.featurette-image {
height: 240px;
}
42 changes: 42 additions & 0 deletions site/web/img/chat.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
52 changes: 52 additions & 0 deletions site/web/img/coding.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
51 changes: 51 additions & 0 deletions site/web/img/open-book.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
85 changes: 85 additions & 0 deletions site/web/img/reuse.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit e78341c

Please sign in to comment.