Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Create application card #306

Merged
merged 1 commit into from
Jun 30, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions src/main/webapp/app/home/welcome/welcome.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,29 @@ <h1 class="display-4">Welcome to JHipster Online</h1>
<hr/>
<div *ngSwitchCase="false">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="card">
<div class="card-header">
<fa-icon icon="rocket"></fa-icon>
&nbsp;Application Generation
</div>
<div class="card-body">
<h4 class="card-title">Create Application</h4>
<p class="card-text">Create a new application with an easy-to-use web form and download as a zip file, or login to push it directly to GitHub & GitLab and add Continuous Integration:</p>
<a class="btn btn-info" routerLink="/generate-application">Create Application</a>
</div>
</div>
</div>
</div>
<hr>
<div class="row">
<div class="col-md-12">
<div class="alert alert-info" role="alert">
<b>Logged-in users can generate projects directly on Github & GitLab, add Continuous Integration and manage JDL configurations in their account.</b>
</div>
</div>
</div>
<div class="row">
<div class="col-md-6">
<div class="card">
Expand Down